Line
Link Here
|
0 |
-- a/bin_steam.sh |
0 |
++ b/bin_steam.sh |
Lines 43-49
function show_message()
Link Here
|
43 |
# Save the prompt in a temporary file because it can have newlines in it |
43 |
# Save the prompt in a temporary file because it can have newlines in it |
44 |
tmpfile="$(mktemp || echo "/tmp/steam_message.txt")" |
44 |
tmpfile="$(mktemp || echo "/tmp/steam_message.txt")" |
45 |
echo -e "$*" >"$tmpfile" |
45 |
echo -e "$*" >"$tmpfile" |
46 |
xterm -T "$title" -e "cat $tmpfile; echo -n 'Press enter to continue: '; read input" |
46 |
xmessage -buttons OK:0 -file "$tmpfile" |
47 |
rm -f "$tmpfile" |
47 |
rm -f "$tmpfile" |
48 |
fi |
48 |
fi |
49 |
} |
49 |
} |
50 |
-- a/bin_steamdeps.py |
50 |
++ b/bin_steamdeps.py |
Lines 447-454
def get_terminal(
Link Here
|
447 |
["konsole", "--nofork", "-p", "tabtitle=" + title, "-e"]), |
447 |
["konsole", "--nofork", "-p", "tabtitle=" + title, "-e"]), |
448 |
("xterm", |
448 |
("xterm", |
449 |
["xterm", "-bg", "#383635", "-fg", "#d1cfcd", "-T", title, "-e"]), |
449 |
["xterm", "-bg", "#383635", "-fg", "#d1cfcd", "-T", title, "-e"]), |
450 |
("x-terminal-emulator", |
450 |
("xvt", |
451 |
["x-terminal-emulator", "-T", title, "-e"]), |
451 |
["xvt", "-T", title, "-e"]), |
452 |
# If we reach this point either 'gnome-terminal' is not available |
452 |
# If we reach this point either 'gnome-terminal' is not available |
453 |
# or the current version is too old for the new '--wait' option. |
453 |
# or the current version is too old for the new '--wait' option. |
454 |
# Anyway we can't know for sure if '--disable-factory' option |
454 |
# Anyway we can't know for sure if '--disable-factory' option |