5 lines
129 B
Bash
Executable File
5 lines
129 B
Bash
Executable File
#!/bin/sh
|
|
|
|
FOCUSED_APP_ID=$(swaymsg -t get_tree | jq '.. | select(.type?) | select(.focused==true).pid')
|
|
kill -9 $FOCUSED_APP_ID
|