summaryrefslogtreecommitdiffstats
path: root/bspwm/.local/bin/panel
diff options
context:
space:
mode:
authorAmin Bandali <amin@aminb.org>2016-11-18 22:28:31 -0500
committerAmin Bandali <amin@aminb.org>2016-11-18 22:28:31 -0500
commit7791c200d9b385f722863cbaf2341dafffdb272f (patch)
treedcecb593622cd4aea06a27332f69b606226889d2 /bspwm/.local/bin/panel
parentb447fcc5a248329d10d995726822e6e001d9eec2 (diff)
downloadconfigs-7791c200d9b385f722863cbaf2341dafffdb272f.tar.gz
configs-7791c200d9b385f722863cbaf2341dafffdb272f.tar.xz
configs-7791c200d9b385f722863cbaf2341dafffdb272f.zip
Update bspwm & sxhkd dots
Diffstat (limited to 'bspwm/.local/bin/panel')
-rwxr-xr-xbspwm/.local/bin/panel30
1 files changed, 0 insertions, 30 deletions
diff --git a/bspwm/.local/bin/panel b/bspwm/.local/bin/panel
deleted file mode 100755
index f04841b..0000000
--- a/bspwm/.local/bin/panel
+++ /dev/null
@@ -1,30 +0,0 @@
-#! /bin/sh
-
-if [ $(pgrep -cx panel) -gt 1 ] ; then
- printf "%s\n" "The panel is already running." >&2
- exit 1
-fi
-
-trap 'trap - TERM; kill 0' INT TERM QUIT EXIT
-
-[ -e "$PANEL_FIFO" ] && rm "$PANEL_FIFO"
-mkfifo "$PANEL_FIFO"
-
-bspc config top_padding $PANEL_HEIGHT
-bspc control --subscribe > "$PANEL_FIFO" &
-#xtitle -sf 'T%s' > "$PANEL_FIFO" &
-#clock -sf 'S%a %H:%M' > "$PANEL_FIFO" &
-
-pamixer --get-volume > /tmp/volinfo
-if $(pamixer --get-mute) ; then
- echo ⮝ > /tmp/spkicon
-else
- echo ⮟ > /tmp/spkicon
-fi
-conky > "$PANEL_FIFO" &
-
-. panel_colors
-
-cat "$PANEL_FIFO" | panel_bar | bar-aint-recursive -g x$PANEL_HEIGHT -f "$PANEL_FONT_FAMILY1","$PANEL_FONT_FAMILY2","$PANEL_FONT_FAMILY3" -F "$COLOR_FOREGROUND" -B "$COLOR_BACKGROUND" &
-
-wait