A ton of updates. We now have working 32 bit wine, Swamp installs and works, many other 32 bit games should as well. Improvements to the user interface both GUI and CLI. Tons of bug fixes. Not quite yet ready for mainstream testing, but getting closer.
This commit is contained in:
@@ -250,23 +250,18 @@ agm_progressbox() {
|
||||
beepPid=$!
|
||||
fi
|
||||
|
||||
# Start visual progress dialog with auto-close
|
||||
# Start visual progress dialog with auto-close, redirect stdin to prevent conflicts
|
||||
yad --progress \
|
||||
--title="$title" \
|
||||
--text="$text" \
|
||||
--auto-close \
|
||||
--pulsate \
|
||||
--width=400 \
|
||||
--height=100 &
|
||||
--height=100 </dev/null &
|
||||
yadPid=$!
|
||||
|
||||
# Process command output
|
||||
local lineCount=0
|
||||
local lastLine="Starting..."
|
||||
while IFS= read -r line; do
|
||||
((lineCount++))
|
||||
lastLine="$line"
|
||||
done < <(stdbuf -oL cat)
|
||||
# Pass through all input completely unchanged
|
||||
cat
|
||||
|
||||
# Clean up background processes
|
||||
cleanup_progress
|
||||
|
Reference in New Issue
Block a user