Skip to main content
Topic solved
This topic has been marked as solved and requires no further attention.
Topic: [SOLVED] Request s6 service for "nvidia-xrun-git" (Read 569 times) previous topic - next topic
0 Members and 1 Guest are viewing this topic.

[SOLVED] Request s6 service for "nvidia-xrun-git"

Hi  :D

Can you pretty please provide an s6 service file for "nvidia-xrun-git" (since it relies on the "nvidia-xrun-pm" service to shut down the gpu at boot time, similar to what bbswitch does).

https://aur.archlinux.org/packages/nvidia-xrun-git/

Thanks!

Re: Request s6 service for "nvidia-xrun-git"

Reply #1
Seeing that this is an AUR package and it also requires nvidia drives to test, we can't really make it official in the repos. You can write the service yourself however. Glancing at that oneshot script I believe something like this is what you want.

up
Code: [Select]
#!/bin/execlineb -P
export TURN_OFF_GPU_ONLY 1
exec /usr/bin/nvidia-xrun

type
Code: [Select]
oneshot

Re: Request s6 service for "nvidia-xrun-git"

Reply #2
Thanks!!!