Skip to content

Latest commit

 

History

History
10 lines (9 loc) · 267 Bytes

README.md

File metadata and controls

10 lines (9 loc) · 267 Bytes

ubuntu-gaming-mode

Script to activate ubuntu gaming mode

#!/bin/bash
WINDOWS_ENTRY=`grep menuentry /boot/grub/grub.cfg  | grep --line-number Windows`
MENU_NUMBER=$(( `echo $WINDOWS_ENTRY | sed -e "s/:.*//"` - 1 ))
sudo grub-reboot $MENU_NUMBER
sudo reboot