diff options
| author | nerrufam <58603397+nerrufam@users.noreply.github.com> | 2020-03-04 15:52:35 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-03-04 09:52:35 -0500 |
| commit | 884b14145a224a2dbc96bcccdd6b47fe00c48d83 (patch) | |
| tree | 0cb9dd95b52e9b515bf0003c21586ae43cf44673 /.local | |
| parent | dab3ae5be0c4a6565394694a6e9cdc61cdeb8d03 (diff) | |
| download | eibhear-884b14145a224a2dbc96bcccdd6b47fe00c48d83.tar.gz eibhear-884b14145a224a2dbc96bcccdd6b47fe00c48d83.tar.zst eibhear-884b14145a224a2dbc96bcccdd6b47fe00c48d83.zip | |
to avoid erorr in vifm when pywal is not used (#481)
Diffstat (limited to '.local')
| -rwxr-xr-x | .local/bin/setbg | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.local/bin/setbg b/.local/bin/setbg index 0927988..87096a6 100755 --- a/.local/bin/setbg +++ b/.local/bin/setbg @@ -8,7 +8,7 @@ [ ! -z "$1" ] && cp "$1" ~/.config/wall.png && notify-send -i "$HOME/.config/wall.png" "Wallpaper changed." # If pywal is installed, use it. -type wal >/dev/null && { wal -c ; +type wal >/dev/null 2>&1 && { wal -c ; wal -s -i ~/.config/wall.png -o ~/.config/wal/postrun; xsetroot -name "fsignal:xrdb"; killall dwmblocks; |
