Customisation of order of icons in left toolbar panel

@tonyx - If you’re comfortable using css snippets, it is possible to hide specific icons.

This is how to hide the icon that takes you to the help vault:

div[aria-label = "Help"]{
  display: none;
}

Basically, where you see Help in this code, place the text that pops up when you hover over the icon you want to hide. For example, to add the icon for the quick switcher:

div[aria-label = "Help"]{
  display: none;
}
div[aria-label = "Open quick switcher"]{
  display: none;
}

Hope this is useful.

8 Likes