nixos-config/sway/scripts/btn_extra.sh
Cy 69286972bf
migrate to dobot (#1)
* get rid of old stuff

* dotbot migration
2024-10-28 17:15:34 -04:00

10 lines
240 B
Bash
Executable file

#!/bin/bash
running_app=$(swaymsg -t get_tree | jq -r 'recurse(.nodes[]?) | select(.focused==true) | .app_id')
if [ "$running_app" = "anki" ]; then
echo "kitty open found 😇"
else
echo "no kitty 😿"
echo "but ${running_app}"
fi