-
-
Notifications
You must be signed in to change notification settings - Fork 41
/
Copy pathctmod_steamtinkerlaunch_git.py
41 lines (34 loc) · 1.48 KB
/
ctmod_steamtinkerlaunch_git.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
# pupgui2 compatibility tools module
# SteamTinkerLaunch-git
# Copyright (C) 2021 DavidoTek, partially based on AUNaseef's protonup
from PySide6.QtCore import QCoreApplication
from pupgui2.resources.ctmods.ctmod_steamtinkerlaunch import CtInstaller as stlCtInstaller
CT_NAME = 'SteamTinkerLaunch-git'
CT_LAUNCHERS = ['steam', 'advmode', 'native-only']
CT_DESCRIPTION = {'en': QCoreApplication.instance().translate('ctmod_steamtinkerlaunch_git', '''
<b>Git release - May be unstable</b>
<br/><br/>
Linux wrapper tool for use with the Steam client which allows for easy graphical configuration of game tools for Proton and native Linux games.
<br/><br/>
On <b>Steam Deck</b>, relevant dependencies will be installed for you. If you are not on Steam Deck, <b>ensure you have the following dependencies installed</b>:
<ul>
<li>awk (or gawk)</li>
<li>bash</li>
<li>git</li>
<li>pgrep</li>
<li>unzip</li>
<li>wget</li>
<li>xdotool</li>
<li>xprop</li>
<li>xrandr</li>
<li>xwininfo</li>
<li>xxd</li>
<li>Yad >= <b>v7.2</b></li>
</ul>
More information is available on the SteamTinkerLaunch Installation wiki page.
<br/><br/>
SteamTinkerLaunch has a number of <b>Optional Dependencies</b> which have to be installed separately for extra functionality. Please see the Optional Dependencies section
of the SteamTinkerLaunch Installation guide on its GitHub page.''')}
class CtInstaller(stlCtInstaller):
def __init__(self, main_window = None):
super().__init__(main_window, allow_git=True)