diff options
author | Luke Smith <luke@lukesmith.xyz> | 2020-04-13 20:30:11 -0400 |
---|---|---|
committer | Luke Smith <luke@lukesmith.xyz> | 2020-04-13 20:30:11 -0400 |
commit | c3592e0405248000727c8bd7e56ca640e3611ef6 (patch) | |
tree | 6a3f0a8c6231813682c5c6628dd06b2926b046bb /dwm.c | |
parent | 6184f47410947162514e6986cea29846b72e91ef (diff) |
suppress if no dwmblocks to kill
Diffstat (limited to 'dwm.c')
-rw-r--r-- | dwm.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1579,7 +1579,7 @@ run(void) void runAutostart(void) { - system("killall dwmblocks ; dwmblocks &"); + system("killall dwmblocks 2>/dev/null ; dwmblocks &"); } void |