Add helper function to restart an app running on Pow!
Andrew Hodges authored on 28/05/2011 at 15:09:371 | 1 |
new file mode 100644 |
... | ... |
@@ -0,0 +1,10 @@ |
0 |
+# Thanks to Christopher Sexton |
|
1 |
+# https://gist.github.com/965032 |
|
2 |
+function kapow { |
|
3 |
+ touch ~/.pow/$1/tmp/restart.txt |
|
4 |
+ if [ $? -eq 0 ]; then |
|
5 |
+ echo "$fg[yellow]Pow restarting $1...$reset_color" |
|
6 |
+ fi |
|
7 |
+} |
|
8 |
+ |
|
9 |
+compctl -W ~/.pow -/ kapow |