summaryrefslogtreecommitdiff
path: root/sway-playpause.sh
blob: bfb3e59a2c32fe1f6551e41bbaf37141d6df9975 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/bin/sh
appid=$(swaymsg -t get_tree | jq -r 'recurse(.nodes[],.floating_nodes[]) |
  select(.focused).app_id')
printf "focused appid = %s\n" $appid
case "$appid" in
  mpv)
    wtype -k space
    ;;
  *)
    notify-send "$(mpc toggle)"
    ;;
esac