mirror of
https://github.com/olexsmir/dotfiles.git
synced 2026-01-15 08:41:34 +02:00
7 lines
250 B
Fish
7 lines
250 B
Fish
function pkill -d "Wrapper around pkill to use fuzzy finder when no argument given"
|
|
if test (count $argv) -eq 0
|
|
ps ax -o user=,pid=,%cpu=,%mem=,stat=,time=,command= | fzf | awk '{print $2}' | xargs kill
|
|
else
|
|
command pkill $argv
|
|
end
|
|
end
|