mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-08-15 08:53:07 +09:00
10 lines
136 B
Bash
10 lines
136 B
Bash
#!/usr/bin/env bash
|
|
/home/worker/bin/run-wizard;
|
|
|
|
SPAWN="$SHELL";
|
|
|
|
if [ "$SHELL" = "bash" ]; then
|
|
SPAWN="bash -li";
|
|
fi;
|
|
|
|
exec $SPAWN;
|