Add optimus manager and full GPU power off config

This commit is contained in:
2020-08-07 22:07:32 -05:00
parent 43705a276a
commit 705f307a03
16 changed files with 112 additions and 20 deletions

15
acpigpu Executable file
View File

@ -0,0 +1,15 @@
#!/bin/bash
#case "$1" in
# pre)
# /home/cole/g14gpu/gpuon.sh ;;
# post)
# /home/cole/g14gpu/gpuoff.sh ;;
#esac
if [ "${1}" == "pre" ]; then
bash /home/cole/g14gpu/gpuon.sh
elif [ "${1}" == "post" ]; then
bash /home/cole/g14gpu/gpuoff.sh
fi