You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Sep 26, 2024. It is now read-only.
Copy file name to clipboardExpand all lines: README.md
+117-5
Original file line number
Diff line number
Diff line change
@@ -84,6 +84,8 @@ Once all dependencies are met, run `./LogosLinuxInstaller.sh` and follow the pro
84
84
85
85
NOTE: You can run Logos on Linux using the Steam Proton Experimental binary, which often has the latest and greatest updates to make Logos run even smoother. The script should be able to find the binary automatically, unless your Steam install is located outside of your HOME directory.
86
86
87
+
Your system must either have `dialog` or `whiptail` installed for a CLI install (launched from CLI), or you must have `zenity` installed for a GUI install (launched from double clicking).
88
+
87
89
## Install Guide
88
90
89
91
For an install guide with pictures and video, see the wiki's [Install Guide](https://github.com/ferion11/LogosLinuxInstaller/wiki/Install-Guide).
@@ -92,8 +94,30 @@ NOTE: This install guide is outdated. Please see [#114](https://github.com/ferio
92
94
93
95
## Debian and Ubuntu
94
96
97
+
### Install dialog program, choose one of the following:
98
+
99
+
CLI:
100
+
101
+
```
102
+
sudo apt install dialog
103
+
```
104
+
105
+
or
106
+
107
+
```
108
+
sudo apt install whiptail
109
+
```
110
+
111
+
GUI:
112
+
95
113
```
96
-
sudo apt install mktemp patch lsof wget find sed grep gawk tr winbind cabextract x11-apps zenity bc libxml2-utils curl
114
+
sudo apt install zenity
115
+
```
116
+
117
+
### Install Dependencies
118
+
119
+
```
120
+
sudo apt install mktemp patch lsof wget find sed grep gawk tr winbind cabextract x11-apps bc libxml2-utils curl
97
121
```
98
122
99
123
If using wine from a repo, you must install wine staging. Run:
@@ -112,8 +136,30 @@ sudo apt install fuse3
112
136
113
137
## Arch
114
138
139
+
### Install dialog program, choose one of the following:
140
+
141
+
CLI:
142
+
143
+
```
144
+
sudo pacman -S dialog
145
+
```
146
+
147
+
or
148
+
149
+
```
150
+
sudo pacman -S whiptail
151
+
```
152
+
153
+
GUI:
154
+
155
+
```
156
+
sudo pacman -S zenity
157
+
```
158
+
159
+
### Install Dependencies
160
+
115
161
```
116
-
sudo pacman -S patch lsof wget sed grep gawk cabextract samba zenity bc libxml2 curl
162
+
sudo pacman -S patch lsof wget sed grep gawk cabextract samba bc libxml2 curl
117
163
```
118
164
119
165
If using wine from a repo, run:
@@ -124,8 +170,30 @@ sudo pacman -S wine
124
170
125
171
### Manjaro
126
172
173
+
#### Install dialog program, choose one of the following:
174
+
175
+
CLI:
176
+
127
177
```
128
-
sudo pamac install patch lsof wget sed grep gawk cabextract samba zenity bc libxml2 curl
178
+
sudo pamac install dialog
179
+
```
180
+
181
+
or
182
+
183
+
```
184
+
sudo pamac install whiptail
185
+
```
186
+
187
+
GUI:
188
+
189
+
```
190
+
sudo pamac install zenity
191
+
```
192
+
193
+
#### Install Dependencies
194
+
195
+
```
196
+
sudo pamac install patch lsof wget sed grep gawk cabextract samba bc libxml2 curl
129
197
```
130
198
131
199
If using wine from a repo, run:
@@ -160,8 +228,30 @@ After these steps you can go ahead and run the your install script.
160
228
161
229
## RPM
162
230
231
+
### Install dialog program, choose one of the following:
0 commit comments