diff options
author | jao <jao@gnu.org> | 2018-12-19 01:14:45 +0000 |
---|---|---|
committer | jao <jao@gnu.org> | 2018-12-19 01:14:45 +0000 |
commit | 754ed5d7c3061c546b4bdbb685bdd73679e04080 (patch) | |
tree | 77a7409374e4c0646d81c85a16da9753472ebabf /bin | |
parent | 48c0e1ebcc0e6a7c9ae302f44c814508bfda7b6a (diff) | |
download | xmobar-config-754ed5d7c3061c546b4bdbb685bdd73679e04080.tar.gz xmobar-config-754ed5d7c3061c546b4bdbb685bdd73679e04080.tar.bz2 |
Shell scripts
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/run-trayer.sh | 9 | ||||
-rwxr-xr-x | bin/toggle-nm-applet.sh | 3 | ||||
-rwxr-xr-x | bin/toggle-xmobar-bottom.sh | 9 | ||||
-rwxr-xr-x | bin/xmobars.sh | 13 |
4 files changed, 34 insertions, 0 deletions
diff --git a/bin/run-trayer.sh b/bin/run-trayer.sh new file mode 100755 index 0000000..c003117 --- /dev/null +++ b/bin/run-trayer.sh @@ -0,0 +1,9 @@ +#!/bin/bash + +trayer --margin 2 --distancefrom left\ + --distance 575 --edge top \ + --align left \ + --widthtype request \ + --height 21 --heighttype pixel \ + --widthtype pixel --transparent true\ + --alpha 255 --padding 1 diff --git a/bin/toggle-nm-applet.sh b/bin/toggle-nm-applet.sh new file mode 100755 index 0000000..4a8d86a --- /dev/null +++ b/bin/toggle-nm-applet.sh @@ -0,0 +1,3 @@ +#!/bin/bash + +(pidof nm-applet && killall nm-applet) || (nm-applet &) diff --git a/bin/toggle-xmobar-bottom.sh b/bin/toggle-xmobar-bottom.sh new file mode 100755 index 0000000..e2c839c --- /dev/null +++ b/bin/toggle-xmobar-bottom.sh @@ -0,0 +1,9 @@ +#!/bin/bash + +pidof xmobar-bottom && killall xmobar-bottom + +if pidof spotify>/dev/null; then + xmobar-bottom $* spotify & +else + xmobar-bottom $* mpd & +fi diff --git a/bin/xmobars.sh b/bin/xmobars.sh new file mode 100755 index 0000000..751e3f2 --- /dev/null +++ b/bin/xmobars.sh @@ -0,0 +1,13 @@ +#!/bin/bash + +killall xmobar-top +xmobar-top $* & +killall xmobar-bottom +if pidof spotify>/dev/null; then + xmobar-bottom $* spotify & +else + xmobar-bottom $* mpd & +fi + +killall trayer +run-trayer.sh & |