all repos

dotfiles @ f3c44d980c95d213f5ab00c4b14bba276f2e1a74

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