Skip to content

Instantly share code, notes, and snippets.

@dwighthouse
Last active November 3, 2024 14:39
Show Gist options
  • Save dwighthouse/5a0d91c6f8747102918e1c66e794976e to your computer and use it in GitHub Desktop.
Save dwighthouse/5a0d91c6f8747102918e1c66e794976e to your computer and use it in GitHub Desktop.
Disable Typing Animation in Discord by running this in the console
// For some reason, the typing notification (and its associated animation) seems to use a lot of processing
// This causes the fans on my laptop to run audibly whenever someone is typing
// This script brute force disables it, since there's no option to reduce animation in Discord
// To run, apply the following code to the console. You can access the console within the devtools, accessible with hotkey:
// Mac: Command+Option+I
// Windows: Control+Shift+I
// Running this script only affects your current Discord session, so it will have to be done every time you start Discord
// Once you finish pasting this, close the devtools with the X in the top corner
document.head.appendChild(document.createElement('style')).innerHTML = '[class^="typing-"] { display: none !important; }';
@Scarlaid
Copy link

Scarlaid commented Nov 3, 2024

does this still work

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment