Files
dotfiles/autostart/40_wallpaper.sh

11 lines
205 B
Bash
Raw Normal View History

2016-09-05 23:25:26 +02:00
#!/usr/bin/env bash
2018-01-29 11:33:00 +01:00
wallpaper="$LIBDIR/wallpaper/current"
2015-11-01 02:30:09 +01:00
2018-01-29 11:33:00 +01:00
printf '%s' "setting wallpaper" >>"$LOGFILE"
2015-11-01 02:30:09 +01:00
{
2018-01-29 11:33:00 +01:00
feh --bg-scale "${wallpaper}"
2018-02-07 14:41:49 +01:00
sleep 10
feh --bg-scale "${wallpaper}"
2015-11-01 02:30:09 +01:00
} & &>> $LOGFILE