Files
dotfiles/.config/swayprop/swaykill
2025-06-26 19:01:39 +02:00

8 lines
108 B
Bash
Executable File

#!/usr/bin/env bash
_pid=$(swayprop | jq .pid)
if [ -z "${_pid}" ]; then
exit 1
else
kill "$@" $_pid
fi