Various scripts that I maintain

abs-nu-exec (new script)

Signed-off-by: Shiloh Fen <shiloh@shilohfen.com>

matrixfurry.com 350fbf4d 36fa7fe6

verified
+8
+8
scripts/abs-nu-exec.nu
··· 1 + #!/home/linuxbrew/.linuxbrew/bin/nu 2 + # SPDX-License-Identifier: AGPL-3.0-only 3 + # Copyright (c) 2025 Shiloh Fen <shiloh@shilohfen.com> 4 + 5 + # Useful for executing nushell scripts in GNOME keyboard shortcuts without adding Homebrew PATH to your shell environment 6 + def main [...command] { 7 + exec /home/linuxbrew/.linuxbrew/bin/nu -l -c ($command | str join ' ') 8 + }