Compare commits

...

20 Commits

Author SHA1 Message Date
solomoncyj
f0f0d6dbea
Merge 9ffed14ae9 into e3688e9b3d 2024-10-24 23:55:33 +02:00
solomoncyj
9ffed14ae9
Update README.md 2024-10-23 21:57:17 +08:00
solomoncyj
c4ec574737
Update linutil-installer.sh 2024-10-21 09:56:29 +08:00
solomoncyj
263fafb20e
Update linutil-installer.sh 2024-10-21 08:16:46 +08:00
solomoncyj
8fe8679101
Update core/tabs/applications-setup/linutil-installer.sh
Co-authored-by: JEEVITHA KANNAN K S <ksjeevithakannan123@gmail.com>
2024-10-21 08:14:49 +08:00
solomoncyj
3f4aa03aa1
Apply suggestions from code review
Co-authored-by: Adam Perkowski <adas1per@protonmail.com>
2024-10-20 22:09:51 +08:00
solomoncyj
d718fe55ff
Update linutil-installer.sh 2024-10-20 17:22:07 +08:00
solomoncyj
2af6596efd
Update README.md 2024-10-20 17:20:41 +08:00
solomoncyj
dc93e74b65
Update linutil-installer.sh 2024-10-18 22:58:46 +08:00
solomoncyj
084cd0f116
Update README.md 2024-10-17 20:55:46 +08:00
solomoncyj
34b0dfc485
Update linutil-installer.sh 2024-10-16 09:17:37 +08:00
solomoncyj
54f7e462ec
Update linutil-installer.sh 2024-10-16 09:05:46 +08:00
solomoncyj
9215033b83
Update linutil-installer.sh 2024-10-16 09:03:08 +08:00
solomoncyj
235c084247
Update linutil-installer.sh 2024-10-16 08:59:51 +08:00
solomoncyj
0d23986c8d fixes 2024-10-16 00:50:41 +00:00
solomoncyj
3a63991e13
Update linutil-installer.sh 2024-10-16 08:19:38 +08:00
solomoncyj
e855935301
Update linutil-installer.sh 2024-10-16 08:05:17 +08:00
solomocyj
182c8925ca set up install script 2024-10-15 14:41:17 +08:00
solomoncyj
9e781b4d2a
Update README.md 2024-10-13 21:18:21 +08:00
solomoncyj
728c1f5e38
Add OpenSUSE to list of linutil added to package managers 2024-10-13 20:58:37 +08:00
2 changed files with 12 additions and 5 deletions

View File

@ -58,7 +58,15 @@ paru -S linutil
Replace `paru` with your preferred helper and `linutil` with your preferred package.
</details>
<details>
<summary>OpenSUSE</summary>
Linutil can be installed on OpenSUSE with:
```bash
sudo zypper install linutil
```
</details>
<details>
<summary>Cargo</summary>

View File

@ -25,6 +25,10 @@ installLinutil() {
esac
printf "%b\n" "${GREEN}Installed successfully.${RC}"
;;
zypper)
"$ESCALATION_TOOL" "$PACKAGER" install linutil -y
printf "%b\n" "${GREEN}Installed successfully.${RC}"
;;
*)
printf "%b\n" "${RED}There are no official packages for your distro.${RC}"
printf "%b" "${YELLOW}Do you want to install the crates.io package? (y/N): ${RC}"
@ -40,11 +44,6 @@ installLinutil() {
dnf)
"$ESCALATION_TOOL" "$PACKAGER" install -y curl rustup man-pages man-db man
;;
zypper)
"$ESCALATION_TOOL" "$PACKAGER" install -n curl gcc make
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y
. $HOME/.cargo/env
;;
*)
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y
. $HOME/.cargo/env