summaryrefslogtreecommitdiffstats
path: root/setup.sh
diff options
context:
space:
mode:
Diffstat (limited to 'setup.sh')
-rw-r--r--setup.sh18
1 files changed, 0 insertions, 18 deletions
diff --git a/setup.sh b/setup.sh
deleted file mode 100644
index 131c4d2..0000000
--- a/setup.sh
+++ /dev/null
@@ -1,18 +0,0 @@
-#!/bin/bash
-
-if [ ! -f py3status/py3status.py ]; then
- echo "py3status/py3status.py not found, run me from the cloned directory"
- exit 1
-fi
-
-echo -n "setting up symlink... "
-if [ ! -L /usr/bin/py3status ]; then
- ln -s $(pwd)/py3status/py3status.py /usr/bin/py3status || exit 2
-fi
-echo "ok"
-
-echo -n "setting up permissions... "
-chmod +x py3status/py3status.py || exit 3
-echo "ok"
-
-echo "setup done, enjoy !"