You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
224 B
11 lines
224 B
14 years ago
|
# 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
|