all repos

dotfiles @ 114435137529f25fa0d03979a5b64dff8c56a9ad

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