Sfoglia il codice sorgente

Added facility to start skype

Samuel W. Flint 8 anni fa
parent
commit
0f3a9852cc
1 ha cambiato i file con 7 aggiunte e 0 eliminazioni
  1. 7 0
      start-skype-maybe

+ 7 - 0
start-skype-maybe

@@ -0,0 +1,7 @@
+#!/bin/sh
+
+ps aux | grep '[s]kype'
+
+if [ $? -eq 1 ] ; then
+    [ -e `which skype` ] && skype
+fi