2023-09-15 15:49:43 -04:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
|
|
|
|
APP="$1"
|
|
|
|
EXEC="$2"
|
|
|
|
|
|
|
|
if [[ "$APP" == "thunderbird" ]]; then
|
|
|
|
hyprctl dispatch togglespecialworkspace thunder
|
2023-09-18 23:22:13 -04:00
|
|
|
elif [[ "$APP" == "Spotify" ]]; then
|
2023-09-15 15:49:43 -04:00
|
|
|
hyprctl dispatch togglespecialworkspace spot
|
|
|
|
elif [[ $(hyprctl clients | grep "$APP") != "" ]]; then
|
|
|
|
hyprctl dispatch focuswindow "^($APP)$"
|
|
|
|
else
|
|
|
|
hyprctl dispatch workspace empty
|
|
|
|
hyprctl dispatch exec "$EXEC"
|
|
|
|
fi
|