Files
2026-05-16 13:01:39 -04:00

10 lines
127 B
Fish

#!/bin/fish
function qd
set -l x ( pgrep -i "discord" | head -n1 )
if test $status -eq 0
kill $x
end
end