From f15ed324ddcf381da7dbaf568de27c3b2e90f7c9 Mon Sep 17 00:00:00 2001 From: the-sane <3657071+the-sane@users.noreply.github.com> Date: Wed, 16 Apr 2025 13:32:48 -0400 Subject: [PATCH] Update shell argument instructions --- lib/sc-launch.sh | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/lib/sc-launch.sh b/lib/sc-launch.sh index 8a034ff..6738905 100755 --- a/lib/sc-launch.sh +++ b/lib/sc-launch.sh @@ -57,7 +57,9 @@ export wine_path="$(command -v wine | xargs dirname)" # This is useful for getting a wine control panel, debugging, etc. # Usage: ./sc-launch.sh shell if [ "$1" = "shell" ]; then - echo "Entering Wine prefix maintenance shell. Type 'exit' when done." + echo "Entering Wine prefix maintenance shell" + echo "Useful commands: winecfg, wine control joy.cpl, wineserver -k" + echo "Type 'exit' when done." export PATH="$wine_path:$PATH"; export PS1="Wine: " cd "$WINEPREFIX"; /usr/bin/env bash --norc; exit 0 fi