lightdm-wallpaper-changer/LDM-Wallpaper.sh

8 lines
226 B
Bash
Raw Normal View History

2021-10-31 14:57:23 -04:00
#!/bin/sh
2021-10-31 15:02:46 -04:00
image=$(find -L /home/linux/Pictures/Wallpapers/ -type f | shuf -n1);
cp "$image" /usr/share/wallpapers/lightdm/;
2021-10-31 14:57:23 -04:00
cd /usr/share/wallpapers/lightdm;
filename=${image##*/};
echo $filename;
2021-10-31 15:02:46 -04:00
mv -f "$filename" wallpaper;