Browse Source

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

Samuel W. Flint 7 năm trước cách đây
mục cha
commit
3007568420
1 tập tin đã thay đổi với 7 bổ sung0 xóa
  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