blob: 9080e467988353250a79bb638fc33e8554e77f89 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
|
# -*- shell-script -*-
# Set background
if test -f ~/.config/background."${SESSION_}"; then
xwallpaper --zoom ~/.config/background."${SESSION_}"
elif test -f ~/.config/background; then
xwallpaper --zoom ~/.config/background
elif test -f /etc/background; then
xwallpaper --zoom /etc/background
fi
|