From 54e7472882c3318b8628bd20b50486000573e04c Mon Sep 17 00:00:00 2001 From: David JULIEN Date: Mon, 12 Jul 2021 17:53:03 +0200 Subject: [PATCH] feat: use .jpg files instead of .png --- .local/bin/setbg | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.local/bin/setbg b/.local/bin/setbg index 3d81bf4..cd91326 100755 --- a/.local/bin/setbg +++ b/.local/bin/setbg @@ -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"