Skip to content

Instantly share code, notes, and snippets.

@DubyaDude
Last active June 8, 2025 14:51
Show Gist options
  • Save DubyaDude/1ee0e8c218a22883721635dfae3e022c to your computer and use it in GitHub Desktop.
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 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");
@SupDos
Copy link

SupDos commented Apr 28, 2025

The Disable clan tag css doesn't seem to apply to messages when using the compact view, managed to fix it by adding div[class*=compact_] span[class*=clanTagChiplet_],, but not sure if that's the correct method

@DubyaDude
Copy link
Author

The Disable clan tag css doesn't seem to apply to messages when using the compact view, managed to fix it by adding div[class*=compact_] span[class*=clanTagChiplet_],, but not sure if that's the correct method

Yup, looks good to me, added to the gist, ty

@dxcvvxd
Copy link

dxcvvxd commented May 1, 2025

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;
}

it doesnt fully remove it, theres still some leftover 😭

image

@IAmYhvr
Copy link

IAmYhvr commented May 12, 2025

This works to fully hide the top bar for me:

.bar_c38106 {
    display: none;
}

:root {
    --custom-app-top-bar-height: 0px;
}

@freshQka
Copy link

Thank you for this.
Does anyone know how to hide JUST the server name from the titlebar?

@DubyaDude
Copy link
Author

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

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