8653659d96
nvidia-prime is a package originating from Arch Linux, containing the prime-run script, meant to allow DEs, and users in some cases, to run apps on the NVIDIA GPU exclusively.
11 lines
239 B
Python
11 lines
239 B
Python
#!/usr/bin/python
|
|
# -*- coding: utf-8 -*-
|
|
|
|
# Licensed under GNU General Public License, version 3.
|
|
# See the file https://www.gnu.org/licenses/gpl.txt
|
|
|
|
from pisi.actionsapi import pisitools
|
|
|
|
def install():
|
|
pisitools.dobin("prime-run")
|