Skip to content

Instantly share code, notes, and snippets.

@Soapbosnia
Last active June 18, 2024 05:23
Show Gist options
  • Save Soapbosnia/0f4198824f98d34aa5f88f3ebd38c846 to your computer and use it in GitHub Desktop.
Save Soapbosnia/0f4198824f98d34aa5f88f3ebd38c846 to your computer and use it in GitHub Desktop.
Disable smooth-scrolling in Discord

Disabling smooth scrolling on Discord

  • Step 1: Press WinKey+R and type %localappdata%
  • Step 2: Find the Discord folder and enter it
  • Step 3: Create a new file called Discord.bat
  • Step 4: Set the file's content to the code below
  • Step 5: Create a shortcut of Discord.bat on the Desktop

Code

@echo off
FOR /F "delims=" %%i IN ('dir /b /ad-h /t:c /od') DO SET a=%%i
start Update.exe
start %a%\Discord.exe --disable-smooth-scrolling
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment