all repos

dotfiles @ 8a02b8f016d5d707289a67c436cf1cf329686eab

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