summaryrefslogtreecommitdiffstats
path: root/.graveyard/noise/modules/overlord
diff options
context:
space:
mode:
Diffstat (limited to '.graveyard/noise/modules/overlord')
-rwxr-xr-x.graveyard/noise/modules/overlord14
1 files changed, 14 insertions, 0 deletions
diff --git a/.graveyard/noise/modules/overlord b/.graveyard/noise/modules/overlord
new file mode 100755
index 00000000..ded8627a
--- /dev/null
+++ b/.graveyard/noise/modules/overlord
@@ -0,0 +1,14 @@
+#! /bin/sh
+set -euf
+
+# cd //
+cd $(dirname $(readlink -f $0))/../..
+
+case "${1---help}" in
+ --help)
+ echo "Make an announcement! Usage: /overlord <text>"
+ ;;
+ *)
+ exec god/overlord/index "$@"
+ ;;
+esac