浏览代码

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