Skip to content

Instantly share code, notes, and snippets.

@rickybrent
Last active November 28, 2025 16:53
Show Gist options
  • Select an option

  • Save rickybrent/279def07c1e22bbe32a3772d14c51108 to your computer and use it in GitHub Desktop.

Select an option

Save rickybrent/279def07c1e22bbe32a3772d14c51108 to your computer and use it in GitHub Desktop.
Remove the new extra titlebar (appbar) from discord.
// ==UserScript==
// @name No discord appbar.
// @namespace com.github.rickybrent.nodiscordappbar
// @match https://discord.com/*
// @grant GM_addStyle
// @date 2025-03-30
// @updateurl https://gist.github.com/rickybrent/279def07c1e22bbe32a3772d14c51108/raw/nodiscordappbar.user.js
// @version 1.1
// @author -
// @description Remove the new extra titlebar (appbar) from discord.
// ==/UserScript==
GM_addStyle(`
:root {
--custom-app-top-bar-height: 0px;
}
div [class="bar_c38106"] {
display: none;
}
[class^=tutorialContainer] {
margin-top: 10px;
}
`);
@nfox18212
Copy link

This is very helpful, but can you add instructions on how to use this? Is this a plugin with something like Vencord?

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