setbg (1760B)
1 #!/bin/sh 2 3 # This script does the following: 4 # Run by itself, set the wallpaper (at X start). 5 # If given a file, set that as the new wallpaper. 6 # If given a directory, choose random file in it. 7 # If wal is installed, also generates a colorscheme. 8 9 # Location of link to wallpaper link. 10 bgloc="${XDG_DATA_HOME:-$HOME/.local/share}/bg" 11 12 # Configuration files of applications that have their themes changed by pywal. 13 dunstconf="${XDG_CONFIG_HOME:-$HOME/.config}/dunst/dunstrc" 14 zathuraconf="${XDG_CONFIG_HOME:-$HOME/.config}/zathura/zathurarc" 15 16 # Give -s as parameter to make notifications silent. 17 while getopts "s" o; do case "${o}" in 18 s) silent='1' ;; 19 esac done 20 21 shift $((OPTIND - 1)) 22 23 trueloc="$(readlink -f "$1")" && 24 case "$(file --mime-type -b "$trueloc")" in 25 image/* ) ln -sf "$trueloc" "$bgloc" && [ -z "$silent" ] && notify-send -i "$bgloc" "Changing wallpaper..." ;; 26 inode/directory ) ln -sf "$(find "$trueloc" -iregex '.*.\(jpg\|jpeg\|png\|gif\)' -type f | shuf -n 1)" "$bgloc" && [ -z "$silent" ] && notify-send -i "$bgloc" "Random Wallpaper chosen." ;; 27 *) [ -z "$silent" ] && notify-send "🖼️ Error" "Not a valid image or directory." ; exit 1;; 28 esac 29 30 # If pywal is installed, use it. 31 if command -v wal >/dev/null 2>&1 ; then 32 wal -n -i "$(readlink -f $bgloc)" -o "${XDG_CONFIG_HOME:-$HOME/.config}/wal/postrun" >/dev/null 2>&1 33 # If pywal is removed, return config files to normal. 34 else 35 [ -f "$dunstconf.bak" ] && unlink "$dunstconf" && mv "$dunstconf.bak" "$dunstconf" 36 [ -f "$zathuraconf.bak" ] && unlink "$zathuraconf" && mv "$zathuraconf.bak" "$zathuraconf" 37 fi 38 39 #xwallpaper --zoom "$bgloc" 40 killall swaybg 41 swaybg -i "$bgloc" -m fill & 42 # If running, dwm hit the key to refresh the color scheme. 43 # pidof dwm >/dev/null && xdotool key super+F5