Skip to content

Commit 5df5e30

Browse files
authored
Add Solus support, Bump version to 1.1
1 parent 5bd2977 commit 5df5e30

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

linux-install-atlauncher.sh

+4-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/bin/bash
22

3-
# Script for installing ATLauncher on Linux, Version 1.0
3+
# Script for installing ATLauncher on Linux, Version 1.1
44
# Copyright (C) 2020-2021 DavidoTek
55

66
# === README ===
@@ -17,6 +17,9 @@ install_dependencies() {
1717
if which zypper > /dev/null; then
1818
echo Detected zypper Trying to install dependencies...
1919
pkexec zypper install -y java-1_8_0-openjdk unzip zenity
20+
elif which eopkg > /dev/null; then
21+
echo Detected eopkg. Trying to install dependencies...
22+
pkexec eopkg install -y openjdk-8 unzip zenity
2023
elif which apt > /dev/null; then
2124
echo Detected apt. Trying to install dependencies...
2225
pkexec apt -y install openjdk-8-jre wget unzip zenity

0 commit comments

Comments
 (0)