If you are using a laptop with an NVIDIA video card you may want to run this script to make sure that your GPU stays at max performance when playing games.
Code:#!/bin/bash echo 'Forcing GPU to high-performance mode. Press CTRL-C to stop.' let x=0 while true; do let y=x*25 echo -ne "\rTime spent in high performance mode: $y seconds" nice /usr/bin/nvidia-settings -q all > /dev/null & let x=x+1 sleep 25; done