basically i made a post about this earlier: https://austiblox.net/forum/topic/3639?page=1#post-12363
but i figured it out like months ago
heres the tutorial
since i cant attach a sh file
create a new sh file and paste this into it:
#!/bin/bash
# Default values
#HTTP_PROXY="http://127.0.0.1:8080"
#HTTPS_PROXY="http://127.0.0.1:8080"
#SOCKS_PROXY="socks5://127.0.0.1:1080"
WINEDEBUG="+dinput"
WINEPREFIX="/home/jankdudz/.wine/"
WINE_PATH="/home/jankdudz/.local/share/lutris/runners/wine/wine-ge-8-26-x86_64/bin/"
ACTION="run" # Default action
# Argument parsing
while [[ $# -gt 0 ]]; do
case "$1" in
--no-proxy)
unset HTTP_PROXY HTTPS_PROXY SOCKS_PROXY
;;
--proxy=*)
PROXY="${1#*=}"
export http_proxy="$PROXY"
export https_proxy="$PROXY"
export socks_proxy="socks5://$PROXY"
;;
--wine-prefix=*)
WINEPREFIX="${1#*=}"
;;
--wine-path=*)
WINE_PATH="${1#*=}"
;;
--debug=*)
WINEDEBUG="${1#*=}"
;;
--regedit)
ACTION="regedit"
;;
--winecfg)
ACTION="winecfg"
;;
--iexplore)
ACTION="iexplore"
;;
--help)
echo "Usage: $0 [options] [url]"
echo "Options:"
echo " --no-proxy Disable proxy settings"
echo " --proxy=<proxy> Set a custom proxy"
echo " --wine-prefix=<path> Set a custom Wine prefix"
echo " --wine-path=<path> Set a custom Wine binary path"
echo " --debug=<level> Set Wine debug level"
echo " --regedit Open Wine registry editor"
echo " --winecfg Open Wine configuration"
echo " --iexplore Open Wine Internet Explorer"
exit 0
;;
*)
URL="${1#*://}"
;;
esac
shift
done
# Export proxy variables if set
[[ -n "$HTTP_PROXY" ]] && export http_proxy="$HTTP_PROXY"
[[ -n "$HTTPS_PROXY" ]] && export https_proxy="$HTTPS_PROXY"
[[ -n "$SOCKS_PROXY" ]] && export socks_proxy="$SOCKS_PROXY"
# Execute based on the selected action
case "$ACTION" in
"run")
# Run Austiblox Updater with the given URL
WINEPREFIX=$WINEPREFIX umu-run /home/jankdudz/Desktop/austistuff/AustibloxS2/AustibloxUpdater.exe "$URL"
;;
"regedit")
# Run Wine Registry Editor
WINEPREFIX=$WINEPREFIX umu-run regedit
;;
"winecfg")
# Run Wine Configuration
WINEPREFIX=$WINEPREFIX umu-run winecfg
;;
"iexplore")
WINEPREFIX=$WINEPREFIX umu-run iexplore
;;
esac
echo "Press Enter to exit..."
read
okay and save it as any name
but first you must download austiblox, and then create a folder named austistuff or any name (configure the script to use the renamed folder of yours) in your desktop directory and then extract austiblox and put the austis2 folder or whatevah into the austistuff folder (basically austis2 folder must be a subfolder of the austistuff folder) and if your username/hostname is different, change the jankdudz part into your name. make sure u have umu-launcher and wine installed before doing the entire process
this technique is abhidjit certified
(btw thanks abhi for making the script)
now save it as a sh and name it into anything and after that you must set executable permissions into it by chmod +x shfilename
in the directory where the sh is located
or if ur lazy right click, properties, and go to permission and find the executable permissions and set it to tick.
now sign in into austi, click play on a game and firefox should ask you what application you want to launch, click on more.. or browse and find the sh folder that has all the code. and select it as your default debugger for austiblox. and tada. u got it! ask me in this post if you have any problems.
Q: where is umu-launcher?!
A: it is not available in most repos
but go to the github website.
https://github.com/Open-Wine-Components/umu-launcher
Arch: sudo pacman -S umu-launcher
(before that make sure extra and multilib repo is enabled by sudo nano /etc/pacman.conf and find for extra testing, the hashtag on the beginning of those is disabling it, remove the hashtag. find for something like #[extra] and #[multilib] the code under it has a hashtag on the start too. remove those hashtags in the starting of those and save it. and then install umu-launcher
Ubuntu: sudo apt install umu-launcher
Fedora: sudo dnf copr enable faugus/faugus-launcher
sudo dnf install umu-launcher
generic:
git clone https://github.com/Open-Wine-Components/umu-launcher.git
cd umu-launcher
./configure.sh --prefix=/usr # or --user-install for local
make
sudo make install # or just 'make install' under --user-install
bye 



