11 lines
279 B
Bash
Executable file
11 lines
279 B
Bash
Executable file
source config.sh
|
|
|
|
versions_dir="$prefix/drive_c/users/$(whoami)/AppData/Local/Roblox/Versions/*/"
|
|
|
|
latest=$(ls -dt --time=birth $versions_dir | head -n 1)
|
|
|
|
export WINEPREFIX=$(realpath $prefix)
|
|
|
|
windows_path=$(winepath --windows $latest)
|
|
|
|
wine $windows_path/RobloxStudioBeta.exe
|