summaryrefslogtreecommitdiffstats
path: root/setup.sh
diff options
context:
space:
mode:
authorUltrabug <ultrabug@gentoo.org>2013-02-23 18:43:08 +0100
committerUltrabug <ultrabug@gentoo.org>2013-02-23 18:43:08 +0100
commit85a0f4e42d4a9333c34326121e01d1b8fe306b9d (patch)
treea136eb152fee0aa8f59f3600479347825fde299c /setup.sh
parent3eaeaf2082d163c22a72f824641e2d1c06c4a9d8 (diff)
move to a proper setuptools installation, update the doc
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 !"