lightdm-wallpaper-changer/LDM-Wallpaper.sh
array-in-a-matrix 38b1a10e9f fixed bugs
2021-10-31 14:57:23 -04:00

9 lines
235 B
Bash
Executable file

#!/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;