0
0
Fork 0
mirror of https://github.com/ohmyzsh/ohmyzsh.git synced 2024-09-19 04:01:21 +02:00
ohmyzsh/plugins/pow/pow.plugin.zsh
Andrew Hodges befb02e3da Pow! Restart Helper
Add helper function to restart an app running on Pow!
2011-05-28 11:09:37 -04:00

10 lines
224 B
Bash

# Thanks to Christopher Sexton
# https://gist.github.com/965032
function kapow {
touch ~/.pow/$1/tmp/restart.txt
if [ $? -eq 0 ]; then
echo "$fg[yellow]Pow restarting $1...$reset_color"
fi
}
compctl -W ~/.pow -/ kapow