diff --git a/systemd/HOME/.config/systemd/user/randomBackground b/systemd/HOME/.config/systemd/user/randomBackground index 7912efed..2208f4c6 100755 --- a/systemd/HOME/.config/systemd/user/randomBackground +++ b/systemd/HOME/.config/systemd/user/randomBackground @@ -16,6 +16,10 @@ if [ -n "$WAYLAND_DISPLAY" ]; then sleep 60 done else - /usr/bin/feh --bg-fill "$background" + if [ -f /usr/bin/feh ]; then + /usr/bin/feh --bg-fill "$background" + else + /usr/bin/hsetroot -fill "$background" + fi fi