Skip to content

Instantly share code, notes, and snippets.

@SpeedyFolf
Forked from aamiaa/RevertNewLayout.md
Last active February 5, 2024 00:44
Show Gist options
  • Save SpeedyFolf/ca185ec6e178e97efb05ed628a14b6a3 to your computer and use it in GitHub Desktop.
Save SpeedyFolf/ca185ec6e178e97efb05ed628a14b6a3 to your computer and use it in GitHub Desktop.
Revert New Discord Layout

Revert New Discord Layout

How to use this script:

  1. Go to https://discord.com/app
  2. Press Ctrl + Shift + I to open DevTools
  3. Go to the Console tab
  4. Paste the following code and press Enter:
let wpRequire;
window.webpackChunkdiscord_app.push([[ Math.random() ], {}, (req) => { wpRequire = req; }]);

let UserSettingsActions = Object.values(wpRequire.c).find(x => x?.exports?.PreloadedUserSettingsActionCreators).exports;
let ProtobufTypes = Object.values(wpRequire.c).find(x => x?.exports?.BoolValue).exports;

UserSettingsActions.PreloadedUserSettingsActionCreators.updateAsync("appearance", data => {
    data.mobileRedesignDisabled = ProtobufTypes.BoolValue.create({value: true})
}, UserSettingsActions.UserSettingsDelay.INFREQUENT_USER_ACTION)

This code requires no changes, preserves all your other appearance settings (such as theme), as well as automatically includes all relevant Discord headers, reducing any risks to minimum.

How does this work?

This emulates flipping the Show New Layout toggle in appearance settings. Yes the toggle is server-synced for some reason.

Note: This is only a temporary solution. Discord will start ignoring that setting in some future update.


This was inspired by @xeuk's original snippet

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