mirror of
https://github.com/DefectingCat/dotfiles
synced 2025-07-15 16:51:36 +00:00
38 lines
1.1 KiB
Bash
Executable File
38 lines
1.1 KiB
Bash
Executable File
#!/bin/bash
|
|
|
|
POPUP_CLICK_SCRIPT="sketchybar --set \$NAME popup.drawing=toggle"
|
|
|
|
github_bell=(
|
|
padding_right=6
|
|
update_freq=180
|
|
icon=$BELL
|
|
icon.font="$FONT:Bold:15.0"
|
|
icon.color=$BLUE
|
|
label=$LOADING
|
|
label.highlight_color=$BLUE
|
|
popup.align=right
|
|
script="$PLUGIN_DIR/github.sh"
|
|
click_script="$POPUP_CLICK_SCRIPT"
|
|
)
|
|
|
|
github_template=(
|
|
drawing=off
|
|
background.corner_radius=12
|
|
padding_left=7
|
|
padding_right=7
|
|
icon.background.height=2
|
|
icon.background.y_offset=-12
|
|
)
|
|
|
|
sketchybar --add event github.update \
|
|
--add item github.bell right \
|
|
--set github.bell "${github_bell[@]}" \
|
|
--subscribe github.bell mouse.entered \
|
|
mouse.exited \
|
|
mouse.exited.global \
|
|
system_woke \
|
|
github.update \
|
|
\
|
|
--add item github.template popup.github.bell \
|
|
--set github.template "${github_template[@]}"
|