all repos

dotfiles @ 2f800f2b57252c0d914b9d6da603b915f60ea01d

my dotfiles

config/fish/functions/pkill.fish (view raw)

1
2
3
4
5
6
7
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