dotfiles/home/apps/sketchybar/plugins/window_title.sh

70 lines
1.4 KiB
Bash
Raw Normal View History

2022-07-30 07:17:12 +02:00
#!/usr/bin/env bash
case "$INFO" in
# IDEs
"CLion") ;&
"GoLand") ;&
"PhpStorm") ;&
"PyCharm") ;&
"WebStorm") ;&
"Lapce") ;&
"Xcode") ICON=" ";;
"Neovide") ICON=" ";;
# developer
"Docker") ICON=" ";;
# terminals
"Kitty") ;&
"iTerm") ;&
"Terminal") ;&
"WezTerm") ICON=" ";;
# browsers
2023-05-07 09:35:05 +02:00
"Chromium") ICON="󰊯 ";;
2022-07-30 07:17:12 +02:00
"Firefox") ICON=" ";;
2023-05-07 09:35:05 +02:00
"Safari") ICON="󰀹 ";;
2022-07-30 07:17:12 +02:00
"qutebrowser") ICON=" ";;
# system
"App Store") ICON=" ";;
"Books") ICON=" ";;
2023-05-07 09:35:05 +02:00
"Finder") ICON="󰀶 ";;
"Music") ICON="󰝚 ";;
2022-07-30 07:17:12 +02:00
"Podcasts") ICON=" ";;
"Photos") ICON=" ";;
"Preview") ICON=" ";;
"System Preferences") ICON=" ";;
# chat
2023-05-07 09:35:05 +02:00
"Discord") ICON="󰙯 ";;
2022-07-30 07:17:12 +02:00
"Mattermost") ICON=" ";;
"Slack") ICON=" ";;
# creativity
2023-05-07 09:35:05 +02:00
"Affinity Designer") ICON="󰃣 ";;
"Affinity Photo") ICON="󰃣 ";;
"Affinity Publisher") ICON="󰈙 ";;
"Blender") ICON="󰂫 ";;
2022-07-30 07:17:12 +02:00
"Final Cut") ICON=" ";;
2023-05-07 09:35:05 +02:00
"Garageband") ICON="󰋄 ";;
"Logic Pro X") ICON="󰋄 ";;
2022-07-30 07:17:12 +02:00
"iMovie") ICON=" ";;
# password managers
"GPG Keychain") ;&
"KeePassXC") ;&
"LastPass") ;&
2023-05-07 09:35:05 +02:00
"1Password") ICON="󰌋 ";;
2022-07-30 07:17:12 +02:00
# other
2023-05-07 09:35:05 +02:00
"Audible") ICON="󰋋 ";;
2022-07-30 07:17:12 +02:00
"Pocket Casts") ICON=" ";;
"Setapp") ICON=" ";;
"Spotify") ICON=" ";;
"Steam") ICON=" ";;
2023-05-07 09:35:05 +02:00
*) ICON="󰘔 ";;
2022-07-30 07:17:12 +02:00
esac
sketchybar --set "$NAME" label="$INFO" icon="$ICON"