Files

10 lines
127 B
Fish
Raw Permalink Normal View History

2026-05-16 13:01:39 -04:00
#!/bin/fish
function qd
set -l x ( pgrep -i "discord" | head -n1 )
if test $status -eq 0
kill $x
end
end