Another copy of my dotfiles. Because I don't completely trust GitHub.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

30 lines
813 B

#!/bin/bash
hour=$(date +"%-H")
morning=6
afternoon=12
night=19
cached=$(cat /tmp/day_cache)
if [ $hour -le $morning ]; then
if [ ! "$cached" = "night" ]; then
feh --bg-fill /home/yigit/.dotfiles/backgrounds/wallpaper-shack.jpg
echo "night" > /tmp/day_cache
fi
elif [ $night -le $hour ]; then
if [ ! "$cached" = "night" ]; then
feh --bg-fill /home/yigit/.dotfiles/backgrounds/wallpaper-shack.jpg
echo "night" > /tmp/day_cache
fi
elif [ $afternoon -le $hour ]; then
if [ ! "$cached" = "afternoon" ]; then
feh --bg-fill /home/yigit/.dotfiles/backgrounds/wallpaper-sea.jpg
echo "afternoon" > /tmp/day_cache
fi
else
if [ ! "$cached" = "morning" ]; then
feh --bg-fill /home/yigit/.dotfiles/backgrounds/wallpaper-mountain.jpg
echo "morning" > /tmp/day_cache
fi
fi