summaryrefslogtreecommitdiff
path: root/home/wayland/pkgs/wayland-scripts/src/bin/ttyasrt
diff options
context:
space:
mode:
Diffstat (limited to 'home/wayland/pkgs/wayland-scripts/src/bin/ttyasrt')
-rwxr-xr-xhome/wayland/pkgs/wayland-scripts/src/bin/ttyasrt23
1 files changed, 23 insertions, 0 deletions
diff --git a/home/wayland/pkgs/wayland-scripts/src/bin/ttyasrt b/home/wayland/pkgs/wayland-scripts/src/bin/ttyasrt
new file mode 100755
index 0000000..5148faf
--- /dev/null
+++ b/home/wayland/pkgs/wayland-scripts/src/bin/ttyasrt
@@ -0,0 +1,23 @@
+#!/bin/sh
+
+die()
+{
+ printf "\033[31;1merr: %b\033[0m\n" "$1"
+ command -v notify-send > /dev/null &&
+ notify-send " ttyasrt" "$1"
+ exit "${2:-1}"
+}
+
+########
+# MAIN #
+########
+
+if [ -z "$TERMINAL" ]; then
+ die "\$TERMIANL must be set"
+fi
+
+if tty --silent; then
+ exec "$@"
+else
+ exec "$TERMINAL" -- "$@"
+fi