Package Details: xfce4-nvgpugraph-plugin 1.0.2-1

Git Clone URL: https://aur.archlinux.org/xfce4-nvgpugraph-plugin.git (read-only, click to copy)
Package Base: xfce4-nvgpugraph-plugin
Description: nvidia GPU Graph plugin for the Xfce4 panel.
Upstream URL: https://github.com/mwyborski/xfce4-nvgpugraph-plugin
Keywords: panel plugin xfce4
Licenses: GPL
Conflicts: xfce4-nvgpugraph-plugin
Provides: xfce4-nvgpugraph-plugin
Submitter: Wzrdwastaken
Maintainer: Wzrdwastaken
Last Packager: Wzrdwastaken
Votes: 1
Popularity: 0.003489
First Submitted: 2024-05-15 11:36 (UTC)
Last Updated: 2025-02-03 21:09 (UTC)

Pinned Comments

Wzrdwastaken commented on 2025-02-03 21:20 (UTC)

Due to the plugin not being in active development anymore and xfce4 not really giving a crap about compatability with older Plugins i don't know and can't verify if it still works and if yes how long it will still be working. I am not a Maintainer of the plugin and probably never will be.

Latest Comments

Wzrdwastaken commented on 2025-02-03 21:20 (UTC)

Due to the plugin not being in active development anymore and xfce4 not really giving a crap about compatability with older Plugins i don't know and can't verify if it still works and if yes how long it will still be working. I am not a Maintainer of the plugin and probably never will be.

Wzrdwastaken commented on 2025-02-03 21:10 (UTC)

Hi @roelkluin. Thanks for the tip changed the way of building the package. Also hated the fact that i needed to have a sudo there before.

roelkluin commented on 2025-01-16 19:40 (UTC) (edited on 2025-01-16 19:40 (UTC) by roelkluin)

The sudo gave an error. I had more luck building with the package() function split in PKGBUILD to:

build() {
  cd "$srcdir/${pkgname}"
  ./autogen.sh
  ./configure --prefix=/usr
  make
}

package() {
  cd "$srcdir/${pkgname}"
  make DESTDIR="$pkgdir/" install
}