From 8113c269cb738ea3e63131f081e744593b80c171 Mon Sep 17 00:00:00 2001 From: Val Packett Date: Fri, 30 Jan 2026 05:45:02 -0300 Subject: [PATCH] munix: add more arg shorthands --- munix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/munix b/munix index e10b715..14e777d 100755 --- a/munix +++ b/munix @@ -29,9 +29,9 @@ while [ "$#" -gt 0 ]; do --no-wayland) WAYLAND=0; shift 1;; --no-pipewire) PIPEWIRE=0; shift 1;; --x11) X11=1; shift 1;; - --bind) BWRAP_ARGS+=("--bind" "$2" "$3"); shift 3;; + -b|--bind) BWRAP_ARGS+=("--bind" "$2" "$3"); shift 3;; --ro-bind) BWRAP_ARGS+=("--ro-bind" "$2" "$3"); shift 3;; - --expose) BWRAP_ARGS+=("--bind" "$2" "$2"); shift 2;; + -e|--expose) BWRAP_ARGS+=("--bind" "$2" "$2"); shift 2;; --ro-expose) BWRAP_ARGS+=("--ro-bind" "$2" "$2"); shift 2;; -p|--publish) USING_PUBLISH=1; MUVM_ARGS+=("--publish=$2"); shift 2;; --host-opengl-driver) HOST_OPENGL_DRIVER="$2"; shift 2;;