New Taskbar, Window Manager & Neovim config
This commit is contained in:
6
.config/sketchybar/items/battery.sh
Executable file
6
.config/sketchybar/items/battery.sh
Executable file
@@ -0,0 +1,6 @@
|
||||
#!/bin/bash
|
||||
|
||||
sketchybar --add item battery right \
|
||||
--set battery update-freq=120 \
|
||||
script="$PLUGIN_DIR/battery.sh" \
|
||||
--subscribe battery system_woke power_source_change
|
8
.config/sketchybar/items/calendar.sh
Executable file
8
.config/sketchybar/items/calendar.sh
Executable file
@@ -0,0 +1,8 @@
|
||||
#!/bin/bash
|
||||
|
||||
sketchybar --add item calendar right \
|
||||
--set calendar icon= \
|
||||
update_freq=1 \
|
||||
script="$PLUGIN_DIR/calendar.sh"
|
||||
|
||||
|
9
.config/sketchybar/items/front_app.sh
Executable file
9
.config/sketchybar/items/front_app.sh
Executable file
@@ -0,0 +1,9 @@
|
||||
#!/bin/bash
|
||||
|
||||
sketchybar --add item front_app left \
|
||||
--set front_app background.color=$ACCENT_COLOR \
|
||||
icon.color=$BAR_COLOR \
|
||||
icon.font="sketchybar-app-font:Regular:16.0" \
|
||||
label.color=$BAR_COLOR \
|
||||
script="$PLUGIN_DIR/front_app.sh" \
|
||||
--subscribe front_app front_app_switched
|
12
.config/sketchybar/items/media.sh
Executable file
12
.config/sketchybar/items/media.sh
Executable file
@@ -0,0 +1,12 @@
|
||||
#!/bin/bash
|
||||
|
||||
sketchybar --add item media e \
|
||||
--set media label.color=$ACCENT_COLOR \
|
||||
label.max_chars=20 \
|
||||
icon.padding_left=0 \
|
||||
scroll_texts=on \
|
||||
icon= \
|
||||
icon.color=$ACCENT_COLOR \
|
||||
background.drawing=off \
|
||||
script="$PLUGIN_DIR/media.sh" \
|
||||
--subscribe media media_change
|
23
.config/sketchybar/items/spaces.sh
Executable file
23
.config/sketchybar/items/spaces.sh
Executable file
@@ -0,0 +1,23 @@
|
||||
#!/bin/bash
|
||||
|
||||
SPACE_SIDS=(1 2 3 4 5 6 7 8 9 10)
|
||||
|
||||
for sid in "${SPACE_SIDS[@]}"
|
||||
do
|
||||
sketchybar --add space space.$sid left \
|
||||
--set space.$sid space=$sid \
|
||||
icon=$sid \
|
||||
label.font="sketchybar-app-font:Regular:16.0" \
|
||||
label.padding_right=20 \
|
||||
label.y_offset=-1 \
|
||||
script="$PLUGIN_DIR/space.sh"
|
||||
done
|
||||
|
||||
sketchybar --add item space_separator left \
|
||||
--set space_separator icon"" \
|
||||
icon.color=$ACCENT_COLOR \
|
||||
icon.padding_left=4 \
|
||||
label.drawing=off \
|
||||
background.drawing=off \
|
||||
script="$PLUGIN_DIR/space_windows.sh" \
|
||||
--subscribe space_separator space_windows_change
|
5
.config/sketchybar/items/volume.sh
Executable file
5
.config/sketchybar/items/volume.sh
Executable file
@@ -0,0 +1,5 @@
|
||||
#!/bin/bash
|
||||
|
||||
sketchybar --add item volume right \
|
||||
--set volume script="$PLUGIN_DIR/volume.sh" \
|
||||
--subscribe volume volume_change \
|
Reference in New Issue
Block a user