On 02/09/2024 at around 8pm UTC, Discord flipped an experiment (2023-09_mobile_redesign_override_toggles) which ignores the layout toggle that this script relied on.
If you want to continue using the old layout, you can either use a modded mobile client (such as Vendetta) to disable that experiment, or downgrade to an old version of the app.
Tip
Use this one if you want a fast, beginner-friendly solution and don't mind using a version from November 2023
- Download version
205.15of Discord mobile app from ApkMirror
This file contains hidden or 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
| this video was created earlier in january from a stupid idea and was driven by sheer determination | |
| despite lacking programming skill. here's a decent description of how it was made (because i am | |
| too lazy to write a github readme): | |
| 1. the video | |
| i downloaded the pv off youtube and used ffmpeg to resize it down to 70x54 dimensions (for easy | |
| math calculations, i used 27 firefox windows, 7 tabs each, so it divided nicely). i then used | |
| ffmpeg (again) to splice the source video into 15-second segments to reduce desyncing and cpu load. | |
| 2. the frames |
TL;DR
- Make a copy conhost.exe from System32.
- Open it with a hex editor (I use HxD).
- In HxD, go to Search - Find - Hex-values.
- Search for 881d9e530a004885c07477ff15b32e08009084c0.
- In Windows 10 version 2004, replace ff15b32e0800 with 909090909090. If using Windows 10 version 20H2, replace ff15b32e08009084 with 9090909090909090.
- Save file and copy it back to System32 (take ownership of original conhost.exe in order to replace it).
- Profit!
This file contains hidden or 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
| /* ==UserStyle== | |
| @name Fix New GitHub Design Issues | |
| @namespace iamrifki | |
| @version 1.0.1 | |
| @description Fixes several things I dislike about the new GitHub redesign | |
| @author Dania Rifki <iamrifki0@gmail.com> | |
| ==/UserStyle== */ | |
| @-moz-document url-prefix("https://github.com/"), url-prefix("https://gist.github.com/") { | |
| /* Add separators back to the file list. */ |
This file contains hidden or 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
| const { execSync } = require('child_process') | |
| const { createHash } = require('crypto') | |
| const invertColor = require('invert-color') | |
| const branchName = execSync('git rev-parse --abbrev-ref HEAD') | |
| const hash = createHash('sha256') | |
| hash.update(branchName) | |
| const color = '#' + hash.digest().toString('hex').substring(0, 6) | |
| const invertedColor = invertColor(color, true) |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
NewerOlder
