diff options
author | jao <jao@gnu.org> | 2019-09-20 00:26:12 +0100 |
---|---|---|
committer | jao <jao@gnu.org> | 2019-09-20 00:26:48 +0100 |
commit | 26767d5adb227e11077c7b4089a082679e59394e (patch) | |
tree | 8999ab3a08a19b265155eb558f74207b20c9576f /bin | |
parent | 504e569a85ca2887207a18428289975b4700fa4a (diff) | |
download | xmobar-config-26767d5adb227e11077c7b4089a082679e59394e.tar.gz xmobar-config-26767d5adb227e11077c7b4089a082679e59394e.tar.bz2 |
TopC for xmobar-exwm
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/toggle-app.sh | 3 | ||||
-rwxr-xr-x | bin/xmobars.sh | 4 |
2 files changed, 6 insertions, 1 deletions
diff --git a/bin/toggle-app.sh b/bin/toggle-app.sh new file mode 100755 index 0000000..a2105ad --- /dev/null +++ b/bin/toggle-app.sh @@ -0,0 +1,3 @@ +#!/bin/bash + +(pidof $1 && killall $1) || ($1 &) diff --git a/bin/xmobars.sh b/bin/xmobars.sh index 4b49f08..ae93c15 100755 --- a/bin/xmobars.sh +++ b/bin/xmobars.sh @@ -4,5 +4,7 @@ killall trayer run-trayer.sh & killall xmobar-top +killall xmobar-bottom xmobar-top $* & -toggle-xmobar-bottom.sh +xmobar-bottom $* & + |