blob: 2de85e621aabf664363ea62b69ab984f520621a5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#!/usr/bin/env bash
xrandr --auto --output HDMI-A-0 --mode 800x600 --primary
cd "$HOME/.wine/drive_c/Team17/Worms 3D" && wine Launcher.exe
wait
xrandr --auto --output HDMI-A-0 --mode 1920x1080 --primary
cd - || exit
|