Skip to content

Instantly share code, notes, and snippets.

@rickybrent
Last active April 6, 2025 23:58
Show Gist options
  • Save rickybrent/279def07c1e22bbe32a3772d14c51108 to your computer and use it in GitHub Desktop.
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;
}
`);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment