I'm currently getting familiar with bash scripting. One of my problems is trying to fix a hybrid video on laptop by switching off the powerful GPU every time Linux loads.
To do that, I currently edit rc.local by adding the following lines:
chown -R $USER:$USER /sys/kernel/debug
echo OFF > /sys/kernel/debug/vgaswitcheroo/switch
The problem is, every time the system comes out of sleep mode, the GPU turns back on again, eventually going hotter and hotter, as indicated by lm-sensors.
My question: What do I have to do to keep said GPU turned off constantly?
