nixos-config/sway/scripts/btn_extra.sh

11 lines
240 B
Bash
Raw Normal View History

2024-10-22 11:53:19 -04:00
#!/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