Skip to content
This repository was archived by the owner on Sep 26, 2024. It is now read-only.

Commit f77997a

Browse files
committed
Update README for dialogs
1 parent af09a3c commit f77997a

File tree

1 file changed

+117
-5
lines changed

1 file changed

+117
-5
lines changed

Diff for: README.md

+117-5
Original file line numberDiff line numberDiff line change
@@ -84,6 +84,8 @@ Once all dependencies are met, run `./LogosLinuxInstaller.sh` and follow the pro
8484

8585
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.
8686

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+
8789
## Install Guide
8890

8991
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
9294

9395
## Debian and Ubuntu
9496

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+
95113
```
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
97121
```
98122

99123
If using wine from a repo, you must install wine staging. Run:
@@ -112,8 +136,30 @@ sudo apt install fuse3
112136

113137
## Arch
114138

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+
115161
```
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
117163
```
118164

119165
If using wine from a repo, run:
@@ -124,8 +170,30 @@ sudo pacman -S wine
124170

125171
### Manjaro
126172

173+
#### Install dialog program, choose one of the following:
174+
175+
CLI:
176+
127177
```
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
129197
```
130198

131199
If using wine from a repo, run:
@@ -160,8 +228,30 @@ After these steps you can go ahead and run the your install script.
160228

161229
## RPM
162230

231+
### Install dialog program, choose one of the following:
232+
233+
CLI:
234+
163235
```
164-
sudo dnf install patch mod_auth_ntlm_winbind samba-winbind cabextract zenity bc libxml2 curl
236+
sudo dnf install dialog
237+
```
238+
239+
or
240+
241+
```
242+
sudo dnf install whiptail
243+
```
244+
245+
GUI:
246+
247+
```
248+
sudo dnf install zenity
249+
```
250+
251+
### Install Dependencies
252+
253+
```
254+
sudo dnf install patch mod_auth_ntlm_winbind samba-winbind cabextract bc libxml2 curl
165255
```
166256

167257
If using wine from a repo, run:
@@ -178,8 +268,30 @@ sudo dnf install fuse3
178268

179269
### CentOS
180270

271+
#### Install dialog program, choose one of the following:
272+
273+
CLI:
274+
275+
```
276+
sudo yum install dialog
277+
```
278+
279+
or
280+
281+
```
282+
sudo yum install whiptail
283+
```
284+
285+
GUI:
286+
287+
```
288+
sudo yum install zenity
289+
```
290+
291+
### Install Dependencies
292+
181293
```
182-
sudo yum install patch mod_auth_ntlm_winbind samba-winbind cabextract zenity bc libxml2 curl
294+
sudo yum install patch mod_auth_ntlm_winbind samba-winbind cabextract bc libxml2 curl
183295
```
184296

185297
If using wine from a repo, run:

0 commit comments

Comments
 (0)