dotfiles/fish/.config/fish/functions/kr.fish

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

6 lines
142 B
Fish
Raw Normal View History

function kr --description "Reload kitty configuration"
for pid in (pidof kitty | string split ' ')
kill -SIGUSR1 $pid
end
end