Dotfiles/bin/.bin/dmenu/rofi-background
2020-03-11 11:45:16 +00:00

15 lines
291 B
Bash
Executable file

#!/usr/bin/env bash
case "$(echo -e "default\nfilm\nearth" | rofi -dmenu)" in
default)
feh --bg-fill "$HOME/Pictures/background"
;;
earth)
background --notify --earth
;;
film)
dir="$HOME/Videos/wallpaper-candidates/"
background --film $( ls "$dir" | rofi -dmenu )
;;
esac