diff options
Diffstat (limited to 'home/wayland/pkgs/wayland-scripts')
-rw-r--r-- | home/wayland/pkgs/wayland-scripts/default.nix | 2 | ||||
-rwxr-xr-x | home/wayland/pkgs/wayland-scripts/src/bin/ttyasrt | 23 |
2 files changed, 25 insertions, 0 deletions
diff --git a/home/wayland/pkgs/wayland-scripts/default.nix b/home/wayland/pkgs/wayland-scripts/default.nix index c98def5..b43f4b7 100644 --- a/home/wayland/pkgs/wayland-scripts/default.nix +++ b/home/wayland/pkgs/wayland-scripts/default.nix @@ -37,6 +37,8 @@ stdenvNoCC.mkDerivation { postInstall = '' wrapProgram $out/bin/cwall \ --prefix PATH : ${lib.makeBinPath [ ffmpeg libnotify sway ]} + wrapProgram $out/bin/ttyasrt \ + --prefix PATH : ${lib.makeBinPath [ libnotify ]} wrapProgram $out/bin/freezshot \ --prefix PATH : ${lib.makeBinPath [ ffmpeg sway grim slurp imv ]} ''; 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 |