mirror of https://github.com/tiyn/dotfiles
parent
e378b99c2e
commit
6b5878cbd2
@ -1,25 +1,5 @@
|
|||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
# Sets the background. If given an argument, will set file as background.
|
# Sets the background.
|
||||||
if [ $(date | awk '{print $1}') = "Mon" ]; then
|
wallDir=~/.config/wallpaper/$(date | awk '{print $1}')
|
||||||
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)
|
currWall=$wallDir/$(ls $wallDir | shuf -n 1)
|
||||||
xwallpaper --zoom $currWall
|
xwallpaper --zoom $currWall
|
||||||
|
Loading…
Reference in new issue