20 lines
830 B
Bash
20 lines
830 B
Bash
#!/usr/bin/env -S bash -c 'echo "Not a user script. source(aka .) only"'
|
|
|
|
if is_cmd midclt; then
|
|
if [ -n "$SCALE_POOL_ROOT" ]; then
|
|
if [ -e "$SCALE_POOL_ROOT/jailmaker/jlmkr.py" ]; then
|
|
#alias jlmkr="bash -c '_jlmkr() { $SCALE_POOL_ROOT/jailmaker/jlmkr.py \${@:---help}; }; _jlmkr \$@' "
|
|
function jlmkr() { sudo VISUAL="${VISUAL:-}" EDITOR="${EDITOR:-}" $SCALE_POOL_ROOT/jailmaker/jlmkr.py "${@:---help}"; }
|
|
|
|
jlmkr-zellij() {
|
|
zellij action go-to-tab-name --create "jailmkr"
|
|
zellij action new-pane --name "${1:?must pass jail name}@jlmkr" -- sh -ci "reset; sudo $SCALE_POOL_ROOT/jailmaker/jlmkr.py shell --uid ${UID} ${1}"
|
|
zellij action focus-previous-pane
|
|
zellij action close-pane
|
|
}
|
|
|
|
fi
|
|
fi
|
|
fi
|
|
|