diff options
author | Vidhu Kant Sharma <bokuwakanojogahoshii@yahoo.com> | 2020-11-06 10:21:25 +0530 |
---|---|---|
committer | Vidhu Kant Sharma <bokuwakanojogahoshii@yahoo.com> | 2020-11-06 10:21:25 +0530 |
commit | 93c04f779a1ce6487bbf5610238ff9d66b44ab19 (patch) | |
tree | 967b4c10402d31851213129705a67054510ddf88 /lemonbar | |
parent | d26cef6d9ac6b4882753c9385ec08202bb3e358a (diff) |
added a folder for custom scripts
Diffstat (limited to 'lemonbar')
-rwxr-xr-x | lemonbar/launch | 13 | ||||
-rwxr-xr-x | lemonbar/mainbar | 2 |
2 files changed, 1 insertions, 14 deletions
diff --git a/lemonbar/launch b/lemonbar/launch deleted file mode 100755 index 1f521365..00000000 --- a/lemonbar/launch +++ /dev/null @@ -1,13 +0,0 @@ -#!/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 - -./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 diff --git a/lemonbar/mainbar b/lemonbar/mainbar index 6e9873b6..d8d1674e 100755 --- a/lemonbar/mainbar +++ b/lemonbar/mainbar @@ -38,7 +38,7 @@ def getTags(): if tag[0] == ':': tags[i] = ' ' + tag_names[tag[1]] + ' ' # format occupied tags elif tag[0] == '#': - tags[i] = '%{F#6c71c4}%{B#d33682}%{F-} ' + tag_names[tag[1]] + '%{F#d33682} %{B#268bd2}%{F-}' # format active tag + tags[i] = '%{F#6c71c4}%{B#d33682}%{F-} ' + tag_names[tag[1]] + '%{F#d33682} %{B#268bd2}%{F-}' # format active tag else: tags[i] = '%{F#443837} ' + tag_names[tag[1]] + '%{F-} ' # format other tags |