aboutsummaryrefslogtreecommitdiff
path: root/bin/safequit
blob: 6b366ba995ec4ab46ebd1c29d7696effe4f127ab (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/usr/bin/env bash
FOCUSED=$(swaymsg -t get_tree | jq -r '.. | (.nodes? // empty)[] | select(.focused) | .name')

main() {
  echo "$FOCUSED"
  if [[ "$FOCUSED" == neovim* ]]; then
    notify-send "pls dont kill neovims like this"
    exit 0
  fi

  swaymsg kill
}

main "$@"