2019-09-13 10:51:43 +02:00
|
|
|
#!/bin/sh
|
2020-03-27 17:31:53 +01:00
|
|
|
|
|
|
|
# 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.
|
2020-04-02 00:06:34 +02:00
|
|
|
# by lukesmithxyz, checkout github.com/lukesmithxyz/voidrice
|
2020-03-27 17:31:53 +01:00
|
|
|
|
|
|
|
[ -f "$1" ] && cp "$1" ~/.config/wall.png && notify-send -i "$HOME/.config/wall.png" "Wallpaper changed."
|
|
|
|
|
|
|
|
[ -d "$1" ] && cp "$(find "$1" -name "*.jpg" -o -name "*.jpeg" -o -name "*.png" -type f | shuf -n 1)" ~/.config/wall.png && notify-send -i "$HOME/.config/wall.png" "Random Wallpaper chosen."
|
|
|
|
|
|
|
|
xwallpaper --zoom ~/.config/wall.png
|