diff options
Diffstat (limited to '.local/share/bin')
-rwxr-xr-x | .local/share/bin/bgcol | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.local/share/bin/bgcol b/.local/share/bin/bgcol index 75b89b4..276e479 100755 --- a/.local/share/bin/bgcol +++ b/.local/share/bin/bgcol @@ -4,6 +4,6 @@ if [ -z "$COLOR" ] ; then . "$XDG_CACHE_HOME/mode/state/theme" COLOR="$bg" fi -convert -size 1x1 "xc:$COLOR" /tmp/bgcol.png +magick -size 1x1 "xc:$COLOR" /tmp/bgcol.png feh --no-fehbg --bg-tile /tmp/bgcol.png rm /tmp/bgcol.png |