Package Details: gotop-bin 4.2.0-1

Git Clone URL: https://aur.archlinux.org/gotop-bin.git (read-only, click to copy)
Package Base: gotop-bin
Description: A terminal based graphical activity monitor inspired by gtop and vtop
Upstream URL: https://github.com/xxxserxxx/gotop
Licenses: AGPL3
Conflicts: gotop
Provides: gotop
Submitter: cjbassi
Maintainer: serxxx
Last Packager: serxxx
Votes: 63
Popularity: 1.06
First Submitted: 2018-04-09 16:08 (UTC)
Last Updated: 2022-09-29 18:52 (UTC)

Latest Comments

« First ‹ Previous 1 2

GrantKr commented on 2020-01-24 11:27 (UTC)

Greetings. Thanks for a good package. I have an issue though. The graphs for CPU and memory display with blocky characters, like I don't have the characters to display, or maybe something else.

Is there an option I need to run with the command? Or something else to install? Maybe its something small and silly I missed.

anodium commented on 2019-07-24 00:30 (UTC)

Hi @cjbassi,

I've added a desktop entry and icon so that it can be run from a DE directly. The patch is linked below, you can apply it with git am gotop-bin.patch.

https://gist.githubusercontent.com/anodium/0f3f48dc6b2d4f70fafb03adcad1de62/raw/11154718429fe88cb883fb255a611339af3b25c4/gotop-bin.patch

cjbassi commented on 2018-12-17 07:52 (UTC)

@willemw Added. Thanks!

willemw commented on 2018-12-14 10:13 (UTC)

Please merge the following into PKGBUILD:

conflicts=("gotop")

package() {
  install -Dm755 "$srcdir/gotop" "$pkgdir/usr/bin/gotop"
}

xoan commented on 2018-12-13 11:03 (UTC)

@cjbassi thanks! :)

cjbassi commented on 2018-12-13 10:35 (UTC)

@xoan Added.

xoan commented on 2018-12-13 07:13 (UTC)

Please, add checksum validation.

cjbassi commented on 2018-04-10 16:54 (UTC)

@adlpz Thanks! Just fixed it.

adlpz commented on 2018-04-10 08:31 (UTC)

The PKGBUILD is broken since 1.2.4 as the separators arround the version number in the release URL changed from dashes to underscores. This would fix it:

--- original    2018-04-10 10:28:47.082002394 +0200
+++ new 2018-04-10 10:29:10.835629863 +0200
@@ -18,7 +18,7 @@
         ;;
 esac

-source=("https://github.com/cjbassi/gotop/releases/download/$pkgver/gotop-$pkgver-linux_$_arch.tgz")
+source=("https://github.com/cjbassi/gotop/releases/download/$pkgver/gotop_${pkgver}_linux_$_arch.tgz")
 md5sums=("SKIP")

 package() {