aboutsummaryrefslogtreecommitdiff
path: root/.local/share/bin/bgcol
blob: 276e479cb7363f0c416ff331147b1f90f18eb58b (plain)
1
2
3
4
5
6
7
8
9
#!/bin/sh
COLOR="$1"
if [ -z "$COLOR" ] ; then
	. "$XDG_CACHE_HOME/mode/state/theme"
	COLOR="$bg"
fi
magick -size 1x1 "xc:$COLOR" /tmp/bgcol.png
feh --no-fehbg --bg-tile /tmp/bgcol.png
rm /tmp/bgcol.png