You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
#!/bin/sh
|
|
|
|
|
|
|
|
# In LARBS, ~/.config/wall.png is the location of the system wallpaper. This
|
|
|
|
# script, if given an argument, moves it there. This script without an
|
|
|
|
# argument sets ~/.config/wall.png as the wallpaper, which is required on login
|
|
|
|
# if you don't want a black screen.
|
|
|
|
#
|
|
|
|
# You may also give a directory name to select a random image from that
|
|
|
|
# directory as a wallpaper. Be careful that the directory only has images.
|
|
|
|
# by lukesmithxyz, checkout github.com/lukesmithxyz/voidrice
|
|
|
|
|
|
|
|
bgloc="${XDG_DATA_HOME:-$HOME/.local/share}/bg"
|
|
|
|
|
|
|
|
|
|
|
|
trueloc="$(readlink -f "$1")" &&
|
|
|
|
case "$(file --mime-type -b "$trueloc")" in
|
|
|
|
image/* ) ln -f "$(readlink -f "$1")" "$bgloc" && notify-send -i "$bgloc" "Changing wallpaper..." ;;
|
|
|
|
inode/directory ) ln -f "$(find "$trueloc" -iregex '.*.\(jpg\|jpeg\|png\|gif\)' -type f | shuf -n 1)" "$bgloc" && notify-send -i "$bgloc" "Random Wallpaper chosen." ;;
|
|
|
|
*) notify-send "🖼️ Error" "Not a valid image or directory." ; exit 1;;
|
|
|
|
esac
|
|
|
|
|
|
|
|
xwallpaper --zoom "$bgloc"
|