aboutsummaryrefslogtreecommitdiff
path: root/herbstluftwm/launch
diff options
context:
space:
mode:
authorVidhu Kant Sharma <bokuwakanojogahoshii@yahoo.com>2020-11-06 10:21:25 +0530
committerVidhu Kant Sharma <bokuwakanojogahoshii@yahoo.com>2020-11-06 10:21:25 +0530
commit93c04f779a1ce6487bbf5610238ff9d66b44ab19 (patch)
tree967b4c10402d31851213129705a67054510ddf88 /herbstluftwm/launch
parentd26cef6d9ac6b4882753c9385ec08202bb3e358a (diff)
added a folder for custom scripts
Diffstat (limited to 'herbstluftwm/launch')
-rwxr-xr-xherbstluftwm/launch15
1 files changed, 15 insertions, 0 deletions
diff --git a/herbstluftwm/launch b/herbstluftwm/launch
new file mode 100755
index 00000000..19488304
--- /dev/null
+++ b/herbstluftwm/launch
@@ -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