Package Details: optimus-manager-git 1:r763.01a04f9.python3.12-1

Git Clone URL: https://aur.archlinux.org/optimus-manager-git.git (read-only, click to copy)
Package Base: optimus-manager-git
Description: Allows using Nvidia Optimus laptop graphics
Upstream URL: https://github.com/Askannz/optimus-manager
Licenses: MIT
Conflicts: bumblebee, envycontrol, nvidia-exec, nvidia-switch, nvidia-xrun, optimus-manager, switcheroo-control
Provides: optimus-manager
Submitter: dude
Maintainer: Askannz (es20490446e)
Last Packager: es20490446e
Votes: 135
Popularity: 1.11
First Submitted: 2019-01-20 22:11 (UTC)
Last Updated: 2024-09-24 10:52 (UTC)

Dependencies (13)

Required by (4)

Sources (1)

Latest Comments

« First ‹ Previous 1 2 3 4 5 6 7 8 9 10 11 12 Next › Last »

nimra commented on 2021-12-13 06:20 (UTC)

This seems to be broken and needs manual rebuild after python upgrade to 3.10 in core

porzione commented on 2021-12-01 07:47 (UTC)

@Spekham2013 this is because of changes in mesa-demos pkg

https://github.com/archlinux/svntogit-packages/commit/1c8fcc676eaa3472daaab0070eaa055cb15ef141#diff-3e341d2d9c67be01819b25b25d5e53ea3cdf3a38d28846cda85a195eb9b7203a

Spekham2013 commented on 2021-12-01 07:40 (UTC)

Had problems with optimus-manager switching this morning. For some reason glxinfo wasn't installed. Fixed by installing mesa-utils. Missing dependency?

Askannz commented on 2021-03-01 22:30 (UTC)

Fixed, apologies for the inconvenience.

chepito commented on 2021-03-01 12:09 (UTC)

Can also confirm that the removal of the suggested line fixes the build.

ixevix commented on 2021-03-01 08:24 (UTC)

Can confirm the removal of install -Dm755 config/xsetup-intel.sh "$pkgdir/etc/optimus-manager/xsetup-intel.sh" fixes the build.

siliconmeadow commented on 2021-02-28 21:47 (UTC)

I think Kr1ss and konicks are right. This worked for me:

diff --git a/PKGBUILD b/PKGBUILD
index e95feb4..83033de 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -63,7 +63,6 @@ package() {
   install -Dm644 config/xorg/hybrid-mode/integrated-gpu.conf "$pkgdir/etc/optimus-manager/xorg/hybrid-mode/integrated-gpu.conf"
   install -Dm644 config/xorg/hybrid-mode/nvidia-gpu.conf "$pkgdir/etc/optimus-manager/xorg/hybrid-mode/nvidia-gpu.conf"

-  install -Dm755 config/xsetup-intel.sh "$pkgdir/etc/optimus-manager/xsetup-intel.sh"
   install -Dm755 config/xsetup-nvidia.sh "$pkgdir/etc/optimus-manager/xsetup-nvidia.sh"
   install -Dm755 config/xsetup-hybrid.sh "$pkgdir/etc/optimus-manager/xsetup-hybrid.sh"
   install -Dm755 config/xsetup-integrated.sh "$pkgdir/etc/optimus-manager/xsetup-integrated.sh"

konicks commented on 2021-02-28 11:50 (UTC)

config/xsetup-intel.sh seems to be gone in the actual package but not the PKGBUILD function, please patch it as in it's current form the package is un-buildable

Kr1ss commented on 2021-02-28 09:51 (UTC) (edited on 2021-02-28 10:00 (UTC) by Kr1ss)

I think

install -Dm755 config/xsetup-intel.sh "$pkgdir/etc/optimus-manager/xsetup-intel.sh"

in package()

needs to be removed, as that file has been renamed in the new release.

EDIT/