feat: use .jpg files instead of .png

This commit is contained in:
David JULIEN 2021-07-12 17:53:03 +02:00
parent 425a043be2
commit 54e7472882
1 changed files with 4 additions and 4 deletions

View File

@ -10,11 +10,11 @@
# If given an argument
# if $1 is a png file, set it as a wallpaper
# if $1 is a jpg file, set it as a wallpaper
# if $1 is a directory, choose a randomized image in it, set it as wallpaper
[ -f "$1" ] && cp $1 "$XDG_CONFIG_HOME/wall.png" && dunstify -u "low" "Wallpaper changed"
[ -f "$1" ] && cp $1 "$XDG_CONFIG_HOME/wall.jpg" && dunstify -u "low" "Wallpaper changed"
[ -d "$1" ] && cp "$(find "$1"/*.png -type f | shuf -n 1)" "$XDG_CONFIG_HOME/wall.png" && dunstify -u "low" "Random wallpaper chosen"
[ -d "$1" ] && cp "$(find "$1"/*.jpg -type f | shuf -n 1)" "$XDG_CONFIG_HOME/wall.jpg" && dunstify -u "low" "Random wallpaper chosen"
xwallpaper --zoom "$XDG_CONFIG_HOME/wall.png"
xwallpaper --zoom "$XDG_CONFIG_HOME/wall.jpg"