blob: 9080e467988353250a79bb638fc33e8554e77f89 (
plain) (
tree)
|
|
# -*- 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
|