Compare commits

...

3 Commits

Author SHA1 Message Date
solomoncyj
a29ad9f5a1
Merge d718fe55ff into 79eb752552 2024-10-20 09:22:10 +00: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
2 changed files with 4 additions and 36 deletions

View File

@ -29,7 +29,7 @@ curl -fsSL https://christitus.com/linuxdev | sh
Linutil is also available as a package in various repositories:
[![Packaging status](https://repology.org/badge/vertical-allrepos/linutil.svg)](https://repology.org/project/linutil/versions)
[![build result](https://build.opensuse.org/projects/utilities/packages/linutil/badge.svg?type=percent)](https://build.opensuse.org/package/show/utilities/linutil)
[![build result](https://build.opensuse.org/projects/openSUSE:Factory/packages/linutil/badge.svg?type=percent)](https://build.opensuse.org/package/show/openSUSE:Factory/linutil)
<details>
<summary>Arch Linux</summary>
@ -62,23 +62,10 @@ Replace `paru` with your preferred helper and `linutil` with your preferred pack
<details>
<summary>OpenSUSE</summary>
While waiting for the Package to be shipped to the Factory, you can install the application for openSuse by running:
### TumbleWeed
###just run:
```bash
zypper addrepo https://download.opensuse.org/repositories/home:solomoncyj/openSUSE_Tumbleweed/home:solomoncyj.repo
zypper refresh
zypper install linutil
```
### Slowroll
```bash
zypper addrepo https://download.opensuse.org/repositories/home:solomoncyj/openSUSE_Slowroll/home:solomoncyj.repo
zypper refresh
zypper install linutil
```
sudo zypper install linutil
```
</details>
<details>
<summary>Cargo</summary>

View File

@ -26,25 +26,6 @@ installLinutil() {
printf "%b\n" "${GREEN}Installed successfully.${RC}"
;;
zypper)
printf '%s\n' 'detecting flavor'
if zypper lr | grep -Fq Tumbleweed
then flavor=Tumbleweed
else flavor=Slowroll
fi
printf '%b%s%b\n' "flavor detected is ${GREEN}" "$flavor" "$RC"
printf "\n" "setting up repos"
case "$flavor" in
Tumbleweed)
"$ESCALATION_TOOL" "$PACKAGER" --gpg-auto-import-keys addrepo https://download.opensuse.org/repositories/home:solomoncyj/openSUSE_Tumbleweed/home:solomoncyj.repo
;;
Slowroll)
"$ESCALATION_TOOL" "$PACKAGER" --gpg-auto-import-keys addrepo https://download.opensuse.org/repositories/home:solomoncyj/openSUSE_Slowroll/home:solomoncyj.repo
;;
esac
printf '%s\n' 'refreshing and installing'
"$ESCALATION_TOOL" "$PACKAGER" refresh
"$ESCALATION_TOOL" "$PACKAGER" install linutil
printf "%b\n" "${GREEN}Installed successfully.${RC}"
;;