Last active
January 6, 2026 22:21
-
-
Save DubyaDude/1ee0e8c218a22883721635dfae3e022c to your computer and use it in GitHub Desktop.
My list of annoying stuff I hide/disable in Discord using Quick CSS
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 css has been moved due to the Vencord development team not allowing gists for import urls. | |
| * Source css: https://github.com/DubyaDude/DubyasCleanupOfDiscord/blob/main/DubyasCleanupOfDiscord.css | |
| */ | |
| @import url("https://raw.githubusercontent.com/DubyaDude/DubyasCleanupOfDiscord/main/DubyasCleanupOfDiscord.css"); |
Author
For those on Linux and don't care about the inbox or help buttons this removes the really dumb looking double title bar at the top
/* Disables the dumb top bar, mostly for Linux users*/ div [class="bar_c38106"] { display: none; } :root { --custom-app-top-bar-height: 0px; }this is great, even on windows. although this makes the server list a bit uncomfortable as this removes the top padding when removing the titlebar. i've added a 12 pixel padding (the same as the x padding) so it looks a bit more "natural". im not sure if this would persist through updates as the class name is hardcoded here. but hey, works on my machine™
/* Add 12px offset to the server list, fixes the uncomfortable look when removing the titlebar*/ nav.wrapper_ef3116 { padding-top: 12px; }
for anyone thats still here, the new thing is over at
nav.ef3116c2da186559-wrapper {
padding-top: 12px;
}
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
This css has been due to the Vencord development team not allowing gists for import urls.
Source css: https://github.com/DubyaDude/DubyasCleanupOfDiscord/blob/main/DubyasCleanupOfDiscord.css
And here's the new repo:
https://github.com/DubyaDude/DubyasCleanupOfDiscord