Last active
November 3, 2024 14:39
-
-
Save dwighthouse/5a0d91c6f8747102918e1c66e794976e to your computer and use it in GitHub Desktop.
Disable Typing Animation in Discord by running this in the console
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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; }'; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
does this still work