Hide desktop.ini google drive atuomatic files, is this possible? As i need to use other files that need to be detected by obsidian. Much apreciated for the help

What I’m trying to do

Things I have tried

Things I have tried

Ive tried to use the excluding feature where the settings are:

/.ini/
/(.ini)/

but no success

Hi @TraderSR,

If you are ok with using CSS snippets you can use the one attached.

HideIniFiles.css (110 Bytes)

div[data-path$='.ini']{
  display: none;
}

1 Like

This worked, thanks!

1 Like