nixos-config/hosts/worf/sketchybar/plugins/space.sh

43 lines
1.0 KiB
Bash
Executable File

#!/bin/bash
update() {
source "$CONFIG_DIR/colors.sh"
COLOR=$BACKGROUND_2
if [ "$SELECTED" = "true" ]; then
COLOR=$GREY
fi
sketchybar --set $NAME icon.highlight=$SELECTED \
label.highlight=$SELECTED \
background.border_color=$COLOR
}
set_space_label() {
sketchybar --set $NAME icon="$@"
}
mouse_clicked() {
if [ "$BUTTON" = "right" ]; then
yabai -m space --destroy $SID
else
if [ "$MODIFIER" = "shift" ]; then
SPACE_LABEL="$(osascript -e "return (text returned of (display dialog \"Give a name to space $NAME:\" default answer \"\" with icon note buttons {\"Cancel\", \"Continue\"} default button \"Continue\"))")"
if [ $? -eq 0 ]; then
if [ "$SPACE_LABEL" = "" ]; then
set_space_label "${NAME:6}"
else
set_space_label "${NAME:6} ($SPACE_LABEL)"
fi
fi
else
yabai -m space --focus $SID 2>/dev/null
fi
fi
}
case "$SENDER" in
"mouse.clicked") mouse_clicked
;;
*) update
;;
esac