#!/bin/bash # to prevent [drm:atom_op_jump] *ERROR* atombios stuck case $1 in suspend|suspend_hybrid|hibernate) echo ON > /sys/kernel/debug/vgaswitcheroo/switch # touch /home/macros/suspendtest.txt ;; resume|thaw) echo OFF > /sys/kernel/debug/vgaswitcheroo/switch # touch /home/macros/resumetest.txt ;; *) ;; esac exit $?