#!/bin/sh # /etc/rc.d/rc.nvidia-hybrid: automatically enable/disable nvidia proprietary drivers if [ -x "$(type -path nvidia-switch)" ]; then if [ -n "$(lspci | grep nVidia)" ]; then nvidia-switch --nvidia else nvidia-switch --xorg fi fi