add sketchybar mac settings and plugins, add skhd new key binds

This commit is contained in:
cainnz
2024-05-01 00:43:14 -07:00
parent 7862f4cfd1
commit bc680e8bb8
19 changed files with 747 additions and 3 deletions

View File

@@ -0,0 +1,18 @@
#!/bin/bash
if [ "$SENDER" = "space_windows_change" ]; then
space="$(echo "$INFO" | jq -r '.space')"
apps="$(echo "$INFO" | jq -r '.apps | keys[]')"
icon_strip=" "
if [ "${apps}" != "" ]; then
while read -r app
do
icon_strip+=" $($CONFIG_DIR/plugins/icon_map_fn.sh "$app")"
done <<< "${apps}"
else
icon_strip=" —"
fi
sketchybar --set space.$space label="$icon_strip"
fi