parent
715b2b7d3e
commit
85af6ac011
2 changed files with 30 additions and 2 deletions
@ -0,0 +1,15 @@ |
|||||||
|
#!/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 |
||||||
|
|
Loading…
Reference in new issue