munix: add more arg shorthands
This commit is contained in:
parent
38213f4ada
commit
8113c269cb
1 changed files with 2 additions and 2 deletions
4
munix
4
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;;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue