Commit | Line | Data |
---|---|---|
411d749a SK |
1 | #! /bin/bash |
2 | ||
3 | set -e | |
4 | ||
411d749a | 5 | BG_COLOR='#b2b2a0' |
411d749a SK |
6 | |
7 | #xsetroot -solid "$BG_COLOR" | |
8 | hsetroot -solid "$BG_COLOR" # Because xsetroot is incompatible with compton. | |
fdc87852 SK |
9 | |
10 | if test -f "$FILE_WALLPAPER_CURR" | |
11 | then | |
12 | bg_image=$(< "$FILE_WALLPAPER_CURR") | |
13 | feh --bg-scale "$bg_image" | |
14 | fi |