lightdm-wallpaper-changer/LDM-Wallpaper.sh

9 lines
235 B
Bash
Raw Normal View History

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