4 files changed,
16 insertions(+),
1 deletions(-)
A
config/fish/functions/pkill.fish
··· 1 +function pkill -d "Wrapper around pkill to use fuzzy finder when no argument given" 2 + if test (count $argv) -eq 0 3 + ps ax -o user=,pid=,%cpu=,%mem=,stat=,time=,command= | fzf | awk '{print $2}' | xargs kill 4 + else 5 + command pkill $argv 6 + end 7 +end