ソースを参照

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

Samuel W. Flint 7 年 前
コミット
3007568420
1 ファイル変更7 行追加0 行削除
  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