How can I customize commands in File Explorer tab?

I’ve used Commander to add a custom command for creating new notes, and now I’d like to remove the default “New Note” command to free up space, especially for mobile view. Is this possible?

I think there are three options for visibility in Commander: both desktop and mobile, desktop and mobile. Have you tried clicking stuff?

I’m not trying to hide the newly added command from explorer - I’m trying to hide obsidian built in commands from explorer - is there an option to do that?
2024-09-21_15-51-23

I misunderstood.

You can hide theme elements with CSS.
On the default theme, on Windows, this works:

div.nav-buttons-container div[aria-label="New note"] {
    display: none;
}

Can you try this on your device?
If it works, and you want to hide on mobile only, then use something like this:

.is-mobile div.nav-buttons-container div[aria-label="New note"] {
    display: none;
}

Help on how to add this:

1 Like

Thanks a lot!! This is exactly what I was looking!!!

1 Like