mirror of
https://github.com/iAmInActions/random-scripts.git
synced 2024-11-21 19:40:12 +00:00
870b6f4ab7
This script sets the wallpaper to a frog on Wednesday.
13 lines
422 B
Bash
13 lines
422 B
Bash
#!/bin/bash
|
|
|
|
cd /home/gregor/Pictures/Wallpapers/
|
|
|
|
if [[ $(date +%u) == 3 ]];
|
|
then
|
|
echo "Its wednesday my dudes!";
|
|
xfconf-query --channel xfce4-desktop --property /backdrop/screen0/monitorDSI1/workspace0/last-image --set $(pwd)/default-frog.png
|
|
else
|
|
echo "Not a wednesday :("
|
|
xfconf-query --channel xfce4-desktop --property /backdrop/screen0/monitorDSI1/workspace0/last-image --set $(pwd)/default-wallpaper.png
|
|
fi
|