From 218d1899fc3a1d74f6851aa0ef98cef0d6b2983b Mon Sep 17 00:00:00 2001 From: Clement Tsang <34804052+ClementTsang@users.noreply.github.com> Date: Tue, 6 Aug 2024 15:17:42 +0000 Subject: [PATCH] docs: fix Debian package links (#1550) Fixes .deb package links in examples. --- README.md | 20 ++++++++++++-------- 1 file changed, 12 insertions(+), 8 deletions(-) diff --git a/README.md b/README.md index 319a4ce2..5f7ea81e 100644 --- a/README.md +++ b/README.md @@ -194,21 +194,25 @@ sudo paru -S bottom-git ### Debian / Ubuntu A `.deb` file is provided on each [stable release](https://github.com/ClementTsang/bottom/releases/latest) and -[nightly builds](https://github.com/ClementTsang/bottom/releases/tag/nightly) for x86, aarch64, and armv7 -(note stable ARM builds are only available for 0.6.8 and later). An example of installing this way: +[nightly builds](https://github.com/ClementTsang/bottom/releases/tag/nightly) for x86, aarch64, and armv7. +Some examples of installing it this way: ```bash # x86-64 -curl -LO https://github.com/ClementTsang/bottom/releases/download/0.10.2/bottom_0.10.2_amd64.deb -sudo dpkg -i bottom_0.10.2_amd64.deb +curl -LO https://github.com/ClementTsang/bottom/releases/download/0.10.2/bottom_0.10.2-1_amd64.deb +sudo dpkg -i bottom_0.10.2-1_amd64.deb # ARM64 -curl -LO https://github.com/ClementTsang/bottom/releases/download/0.10.2/bottom_0.10.2_arm64.deb -sudo dpkg -i bottom_0.10.2_arm64.deb +curl -LO https://github.com/ClementTsang/bottom/releases/download/0.10.2/bottom_0.10.2-1_arm64.deb +sudo dpkg -i bottom_0.10.2-1_arm64.deb # ARM -curl -LO https://github.com/ClementTsang/bottom/releases/download/0.10.2/bottom_0.10.2_armhf.deb -sudo dpkg -i bottom_0.10.2_armhf.deb +curl -LO https://github.com/ClementTsang/bottom/releases/download/0.10.2/bottom_0.10.2-1_armhf.deb +sudo dpkg -i bottom_0.10.2-1_armhf.deb + +# musl-based +curl -LO https://github.com/ClementTsang/bottom/releases/download/0.10.2/bottom-musl_0.10.2-1_amd64.deb +sudo dpkg -i bottom-musl_0.10.2-1_amd64.deb ``` ### Exherbo Linux