summaryrefslogtreecommitdiff
path: root/.local
diff options
context:
space:
mode:
authorDavid Luevano Alvarado <55825613+luevano@users.noreply.github.com>2020-12-20 12:18:39 -0700
committerDavid Luevano Alvarado <55825613+luevano@users.noreply.github.com>2020-12-20 12:18:39 -0700
commitb0a8649d522ca19ed9a85090a915a0709b916e85 (patch)
tree11cce1a1a11afc87753e3153b0d78f615082f9f3 /.local
parent562ccc7d9514d60bcbc13072da6ed50e478b94f1 (diff)
Rename status bar to panel
Diffstat (limited to '.local')
-rwxr-xr-x.local/bin/statusbar/panel (renamed from .local/bin/statusbar/statusbar)12
-rw-r--r--.local/bin/statusbar/panel_colors (renamed from .local/bin/statusbar/statusbar_colors)0
-rwxr-xr-x.local/bin/statusbar/panel_main (renamed from .local/bin/statusbar/statusbar_main)2
3 files changed, 7 insertions, 7 deletions
diff --git a/.local/bin/statusbar/statusbar b/.local/bin/statusbar/panel
index 1bebb31..c54338b 100755
--- a/.local/bin/statusbar/statusbar
+++ b/.local/bin/statusbar/panel
@@ -1,5 +1,5 @@
#!/bin/sh
-# General script that manages the statusbar/panel.
+# General script that manages the panel/panel.
STATUSBAR_FIFO=/tmp/panel-fifo
STATUSBAR_HEIGHT=20
@@ -8,12 +8,12 @@ STATUSBAR_EMOJI_FONT0="Noto Color Emoji"
STATUSBAR_EMOJI_FONT1="Font Awesome 5 Free"
STATUSBAR_EMOJI_FONT2="Font Awesome 5 Brands"
STATUSBAR_EMOJI_FONT3="Font Awesome 5 Free Solid"
-STATUSBAR_WM_NAME=bspwm_statusbar
-. statusbar_colors
+STATUSBAR_WM_NAME=bspwm_panel
+. panel_colors
if xdo id -a "$STATUSBAR_WM_NAME" > /dev/null ; then
- printf "%s\n" "The status bar is already running. Try pkill -x statusbar." >&2
+ printf "%s\n" "The status bar is already running. Try pkill -x panel." >&2
exit 1
fi
@@ -25,7 +25,7 @@ trap 'trap - TERM; kill 0' INT TERM QUIT EXIT
mkfifo "$STATUSBAR_FIFO"
-# Here is where all the 'plugins' or 'blocks' for the statusbar
+# Here is where all the 'plugins' or 'blocks' for the panel
# are run. They're piped into the FIFO for later reading.
# In general you want them to print a letter at the beginning and then
# the actual stuff to show on scren, so you can distinguish between them on the actual bars.
@@ -37,7 +37,7 @@ bspc subscribe report > "$STATUSBAR_FIFO" &
# Here you can start N amount of bars and each one would be
# different if required. Piping into 'sh' is required for interaction
# with the bar.
-statusbar_main < "$STATUSBAR_FIFO" | lemonbar -a 32 -u 2 -n "$STATUSBAR_WM_NAME" -g x$STATUSBAR_HEIGHT -f "$STATUSBAR_FONT" -f "$STATUSBAR_EMOJI_FONT0" -f "$STATUSBAR_EMOJI_FONT1" -f "$STATUSBAR_EMOJI_FONT2" -f "$STATUSBAR_EMOJI_FONT3" -F "$COLOR_DEFAULT_FG" -B "$COLOR_DEFAULT_BG" | sh &
+panel_main < "$STATUSBAR_FIFO" | lemonbar -a 32 -u 2 -n "$STATUSBAR_WM_NAME" -g x$STATUSBAR_HEIGHT -f "$STATUSBAR_FONT" -f "$STATUSBAR_EMOJI_FONT0" -f "$STATUSBAR_EMOJI_FONT1" -f "$STATUSBAR_EMOJI_FONT2" -f "$STATUSBAR_EMOJI_FONT3" -F "$COLOR_DEFAULT_FG" -B "$COLOR_DEFAULT_BG" | sh &
# This only really works for one monitor.
diff --git a/.local/bin/statusbar/statusbar_colors b/.local/bin/statusbar/panel_colors
index 4597036..4597036 100644
--- a/.local/bin/statusbar/statusbar_colors
+++ b/.local/bin/statusbar/panel_colors
diff --git a/.local/bin/statusbar/statusbar_main b/.local/bin/statusbar/panel_main
index 7cf27db..20fdbd5 100755
--- a/.local/bin/statusbar/statusbar_main
+++ b/.local/bin/statusbar/panel_main
@@ -1,6 +1,6 @@
#!/bin/sh
-. statusbar_colors
+. panel_colors
while read -r line ; do
case $line in