aboutsummaryrefslogtreecommitdiff
path: root/scripts/launch-lemonbar
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/launch-lemonbar')
-rwxr-xr-xscripts/launch-lemonbar15
1 files changed, 15 insertions, 0 deletions
diff --git a/scripts/launch-lemonbar b/scripts/launch-lemonbar
new file mode 100755
index 00000000..19488304
--- /dev/null
+++ b/scripts/launch-lemonbar
@@ -0,0 +1,15 @@
+#!/bin/bash
+
+# this script executes the mainbar script
+# then pipes it into lemonbar
+# and pipes the lemonbar's output
+# to the button-actions script
+# which handles all the button actions
+
+cd /home/zt/.config/lemonbar
+
+./mainbar | lemonbar -g 1366x21 -B '#171520' -p -F '#ffffff' -f "Source Han Sans JP:size=10" -o -3 -f "RobotoMono Nerd Font:style=Regular:size=15" -f -n "mainbar" -o 0 | ./button-actions
+
+echo "lemonbar launched"
+
+exit