Before Width: | Height: | Size: 2.6 MiB |
@ -0,0 +1 @@
|
|||||||
|
ressources/pixel
|
@ -0,0 +1 @@
|
|||||||
|
ressources/fantasy
|
After Width: | Height: | Size: 1.5 MiB |
After Width: | Height: | Size: 4.6 MiB |
After Width: | Height: | Size: 357 KiB |
After Width: | Height: | Size: 1.2 MiB |
After Width: | Height: | Size: 1.2 MiB |
After Width: | Height: | Size: 23 KiB |
After Width: | Height: | Size: 138 KiB |
After Width: | Height: | Size: 73 KiB |
After Width: | Height: | Size: 160 KiB |
After Width: | Height: | Size: 54 KiB |
After Width: | Height: | Size: 1.5 MiB |
After Width: | Height: | Size: 4.6 MiB |
After Width: | Height: | Size: 34 KiB |
After Width: | Height: | Size: 236 KiB |
After Width: | Height: | Size: 199 KiB |
After Width: | Height: | Size: 578 KiB |
After Width: | Height: | Size: 19 KiB |
After Width: | Height: | Size: 875 KiB |
After Width: | Height: | Size: 79 KiB |
After Width: | Height: | Size: 350 KiB |
After Width: | Height: | Size: 814 KiB |
After Width: | Height: | Size: 677 KiB |
After Width: | Height: | Size: 899 KiB |
@ -0,0 +1 @@
|
|||||||
|
ressources/space
|
@ -0,0 +1 @@
|
|||||||
|
ressources/sun
|
@ -0,0 +1 @@
|
|||||||
|
ressources/moon
|
@ -0,0 +1 @@
|
|||||||
|
ressources/landscape
|
@ -0,0 +1 @@
|
|||||||
|
ressources/minimal
|
@ -1,4 +1,25 @@
|
|||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
# Sets the background. If given an argument, will set file as background.
|
# Sets the background. If given an argument, will set file as background.
|
||||||
[ ! -z "$1" ] && cp "$1" ~/.config/wall.png && notify-send -i "$HOME/.config/wall.png" "Wallpaper changed."
|
if [ $(date | awk '{print $1}') = "Mon" ]; then
|
||||||
xwallpaper --zoom ~/.config/wall.png
|
wallDir=~/.config/wallpaper/mon
|
||||||
|
fi
|
||||||
|
if [ $(date | awk '{print $1}') = "Tue" ]; then
|
||||||
|
wallDir=~/.config/wallpaper/tue
|
||||||
|
fi
|
||||||
|
if [ $(date | awk '{print $1}') = "Wed" ]; then
|
||||||
|
wallDir=~/.config/wallpaper/wed
|
||||||
|
fi
|
||||||
|
if [ $(date | awk '{print $1}') = "Thu" ]; then
|
||||||
|
wallDir=~/.config/wallpaper/thu
|
||||||
|
fi
|
||||||
|
if [ $(date | awk '{print $1}') = "Fri" ]; then
|
||||||
|
wallDir=~/.config/wallpaper/fri
|
||||||
|
fi
|
||||||
|
if [ $(date | awk '{print $1}') = "Sat" ]; then
|
||||||
|
wallDir=~/.config/wallpaper/sat
|
||||||
|
fi
|
||||||
|
if [ $(date | awk '{print $1}') = "Sun" ]; then
|
||||||
|
wallDir=~/.config/wallpaper/sun
|
||||||
|
fi
|
||||||
|
currWall=$wallDir/$(ls $wallDir | shuf -n 1)
|
||||||
|
xwallpaper --zoom $currWall
|
||||||
|