all repos

dotfiles @ eb21be2

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