aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--README.org16
-rwxr-xr-xbuild.sh4
2 files changed, 18 insertions, 2 deletions
diff --git a/README.org b/README.org
new file mode 100644
index 0000000..5f074bc
--- /dev/null
+++ b/README.org
@@ -0,0 +1,16 @@
+#+AUTHOR: David Moc
+#+EMAIL: personal@cdatgoose.org
+
+
+* Tasker
+Tasker is a simple task tracker (with built in fish completion) written in Haskell.
+
+* Install
+You can eiter use the `./build.sh` that installs into:
+- `/usr/local/bin/tasker`
+- `/usr/share/fish/vendor_completions.d/tasker.fish`
+Or just run:
+#+begin_src shell
+ cabal build exe:tasker
+#+end_src
+and copy the file to your bin.
diff --git a/build.sh b/build.sh
index 6b52919..128016e 100755
--- a/build.sh
+++ b/build.sh
@@ -5,8 +5,8 @@ cabal build exe:tasker
bin=$(cabal list-bin exe:tasker)
-sudo install -Dm755 "$bin" /usr/local/bin/tasker
+sudo install -Dm755 "$bin" /usr/local/bin/tasker
sudo install -Dm644 tasker.fish /usr/share/fish/vendor_completions.d/tasker.fish
-echo "Installed $bin -> /usr/local/bin/tasker"
+echo "Installed $bin -> /usr/local/bin/tasker"
echo "Installed tasker.fish -> /usr/share/fish/vendor_completions.d/tasker.fish"