aboutsummaryrefslogtreecommitdiffstats
path: root/bin/copilot.sh
diff options
context:
space:
mode:
Diffstat (limited to 'bin/copilot.sh')
-rwxr-xr-xbin/copilot.sh23
1 files changed, 0 insertions, 23 deletions
diff --git a/bin/copilot.sh b/bin/copilot.sh
deleted file mode 100755
index 68e8ebd..0000000
--- a/bin/copilot.sh
+++ /dev/null
@@ -1,23 +0,0 @@
-#!/bin/sh
-set -e
-
-tmpdir=$(mktemp -d)
-trap 'rm -rf "$tmpdir"' EXIT INT TERM HUP
-
-ARGS="$@"
-FIFO=$tmpdir/fifo
-CONF=$tmpdir/conf
-LIBDIR=$(dirname $0)
-LUA_PATH="$LIBDIR/?.lua;$LIBDIR/?/init.lua;$LUA_PATH"
-
-cat > "$CONF" << 'EOF'
-split
-focus
-screen -t evaltime sh -c 'tty > "$FIFO"; read done < "$FIFO"'
-focus
-screen -t runtime sh -c 'read tty < "$FIFO"; moon "$LIBDIR/alv/copilot.moon" $ARGS 2> "$tty"; echo "[press enter to exit]"; read prompt; echo done > "$FIFO"'
-EOF
-
-mkfifo "$FIFO"
-export FIFO ARGS LIBDIR LUA_PATH
-exec screen -mc "$CONF"