Explorar el Código

Added a script to start autolux if it's installed, warn if not

Samuel W. Flint hace 7 años
padre
commit
3007568420
Se han modificado 1 ficheros con 7 adiciones y 0 borrados
  1. 7 0
      autolux-starter

+ 7 - 0
autolux-starter

@@ -0,0 +1,7 @@
+#!/bin/zsh -f
+
+if [[ -e `which autolux`]] ; then
+    autolux
+else
+    echo "Please install autolux with sudo pip install autolux"
+fi