Hide certain buttons from left toolbar?

I’d like to hide the Command Palette and Quick Switcher buttons from the left toolbar, since I only ever use the keyboard shortcuts to access them. Is that possible?

2 Likes

You can do it through this way:

Settings → Core plugins → Disable “Command palette” and “Quick switcher”.

That disables it completely — I only want to hide the button.

My bad. I guess you could use a CSS snippet for manual hiding:

[aria-label="Open command palette"] {
  display: none !important;
  visibility: hidden;
}

[aria-label="Open quick switcher"] {
  display: none !important;
  visibility: hidden;
}
2 Likes

This topic was automatically closed 24 hours after the last reply. New replies are no longer allowed.