Skip to content

Instantly share code, notes, and snippets.

@adrinux
Last active November 28, 2019 12:06
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save adrinux/0bf9013bbbba2eebe52d8ffc716da15a to your computer and use it in GitHub Desktop.
Save adrinux/0bf9013bbbba2eebe52d8ffc716da15a to your computer and use it in GitHub Desktop.
Disabling nmi_watchdog in manjaro Gnome
# Was experiencing pauses and stuttering in the GUI. This made things smooth again.
# Disable nmi_watchdog, replace nvim with your preferred editor
sudo nvim /etc/modprobe.d/watchdog.conf
# add lines
blacklist iTCO_wdt
blacklist iTCO_vendor_support
# add to kernel params in grub config
sudo nvim /etc/default/grub
# and add nmi_watchdog=0 after resume uuid
nmi_watchdog=0
# then
sudo update-grub
# and reboot
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment