aboutsummaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authorVidhu Kant Sharma <bokuwakanojogahoshii@yahoo.com>2020-11-06 16:10:05 +0530
committerVidhu Kant Sharma <bokuwakanojogahoshii@yahoo.com>2020-11-06 16:10:05 +0530
commita5083d372cf2768221cbbb52e0110e2fd61effff (patch)
tree286cc15bf62b66bf966c30f6e8fe6b72d01fde25 /scripts
parent6993d219f40ca02dda63582b5d33f2789bec16a8 (diff)
actually moved the lemonbar script
Diffstat (limited to 'scripts')
-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