mirror of
https://github.com/js0ny/dotfiles.git
synced 2025-12-21 08:43:00 +00:00
20 lines
561 B
Bash
Executable file
20 lines
561 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
COLOR="$CYAN"
|
|
|
|
sketchybar --add item battery right \
|
|
--set battery \
|
|
update_freq=60 \
|
|
icon.color="$COLOR" \
|
|
icon.padding_left=10 \
|
|
label.padding_right=10 \
|
|
label.color="$COLOR" \
|
|
background.height=26 \
|
|
background.corner_radius="$CORNER_RADIUS" \
|
|
background.padding_right=5 \
|
|
background.border_width="$BORDER_WIDTH" \
|
|
background.border_color="$COLOR" \
|
|
background.color="$BAR_COLOR" \
|
|
background.drawing=on \
|
|
script="$PLUGIN_DIR/power.sh" \
|
|
--subscribe battery power_source_change
|