15 lines
302 B
Fish
15 lines
302 B
Fish
|
#!/usr/bin/env fish
|
||
|
alias hc=herbstclient
|
||
|
|
||
|
function restart_svcs
|
||
|
for cmd in $argv
|
||
|
if not command -sq "$cmd";
|
||
|
log -c yellow "command [$cmd] not found, skipping..."
|
||
|
continue
|
||
|
end
|
||
|
log -c red "killing [$cmd]"
|
||
|
pkill -9 $cmd
|
||
|
log -c magenta "starting [$cmd]"
|
||
|
hc silent spawn "$cmd"
|
||
|
end
|
||
|
end
|