make a new changing wallpaper script
BIN
.config/wall.png
Before Width: | Height: | Size: 2.6 MiB |
1
.config/wallpaper/fri
Symbolic link
@ -0,0 +1 @@
|
|||||||
|
ressources/pixel
|
1
.config/wallpaper/mon
Symbolic link
@ -0,0 +1 @@
|
|||||||
|
ressources/fantasy
|
BIN
.config/wallpaper/ressources/fantasy/lavaballgrey.jpg
Normal file
After Width: | Height: | Size: 1.5 MiB |
BIN
.config/wallpaper/ressources/fantasy/painingmainboard.png
Normal file
After Width: | Height: | Size: 4.6 MiB |
BIN
.config/wallpaper/ressources/fantasy/paintingdesert.jpg
Normal file
After Width: | Height: | Size: 357 KiB |
BIN
.config/wallpaper/ressources/landscape/drawingnightsky.png
Normal file
After Width: | Height: | Size: 1.2 MiB |
BIN
.config/wallpaper/ressources/landscape/mtfuji.jpg
Normal file
After Width: | Height: | Size: 1.2 MiB |
BIN
.config/wallpaper/ressources/minimal/gameoflife.png
Normal file
After Width: | Height: | Size: 23 KiB |
BIN
.config/wallpaper/ressources/minimal/linepattern.png
Normal file
After Width: | Height: | Size: 138 KiB |
BIN
.config/wallpaper/ressources/minimal/linuxtux.png
Normal file
After Width: | Height: | Size: 73 KiB |
BIN
.config/wallpaper/ressources/minimal/minimalcolorstripes.png
Normal file
After Width: | Height: | Size: 160 KiB |
BIN
.config/wallpaper/ressources/minimal/minimalmountain.png
Normal file
After Width: | Height: | Size: 54 KiB |
BIN
.config/wallpaper/ressources/minimal/neurallink.png
Normal file
After Width: | Height: | Size: 1.5 MiB |
BIN
.config/wallpaper/ressources/moon/.moonblack2.jpg.~3394f7c6
Normal file
After Width: | Height: | Size: 4.6 MiB |
BIN
.config/wallpaper/ressources/moon/earthmoonblack.jpg
Normal file
After Width: | Height: | Size: 34 KiB |
BIN
.config/wallpaper/ressources/moon/eclipseblack.jpg
Normal file
After Width: | Height: | Size: 236 KiB |
BIN
.config/wallpaper/ressources/moon/moonblack.jpg
Normal file
After Width: | Height: | Size: 199 KiB |
BIN
.config/wallpaper/ressources/pixel/pixelmoonpurple.png
Normal file
After Width: | Height: | Size: 578 KiB |
BIN
.config/wallpaper/ressources/pixel/zeldadangerous.png
Normal file
After Width: | Height: | Size: 19 KiB |
BIN
.config/wallpaper/ressources/space/minimalplanetblue.png
Normal file
After Width: | Height: | Size: 875 KiB |
BIN
.config/wallpaper/ressources/space/minimalplanetsblue.jpg
Normal file
After Width: | Height: | Size: 79 KiB |
BIN
.config/wallpaper/ressources/space/nebulablue.jpg
Normal file
After Width: | Height: | Size: 350 KiB |
BIN
.config/wallpaper/ressources/space/spaceeye.jpg
Normal file
After Width: | Height: | Size: 814 KiB |
BIN
.config/wallpaper/ressources/space/spacexduallanding.jpg
Normal file
After Width: | Height: | Size: 677 KiB |
BIN
.config/wallpaper/ressources/sun/.minimalsungrey.jpg.~26e5e097
Normal file
After Width: | Height: | Size: 899 KiB |
1
.config/wallpaper/sat
Symbolic link
@ -0,0 +1 @@
|
|||||||
|
ressources/space
|
1
.config/wallpaper/sun
Symbolic link
@ -0,0 +1 @@
|
|||||||
|
ressources/sun
|
1
.config/wallpaper/thu
Symbolic link
@ -0,0 +1 @@
|
|||||||
|
ressources/moon
|
1
.config/wallpaper/tue
Symbolic link
@ -0,0 +1 @@
|
|||||||
|
ressources/landscape
|
1
.config/wallpaper/wed
Symbolic link
@ -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
|
||||||
|