The “desktop.ini” files I showed in the attached image are created in each folder. My Obsidian Vault folder is in Google Drive. I guess I can’t prevent this file from being created. It’s not very nice this way either, what can I do to make this “.ini files” invisible?
1 Like
You can make it hidden via CSS enabled as a code snippet in the appearance panel
this work for a folder
.nav-folder-title[data-path*="logseq"] {
display: none;
}
in your case should be something like
.nav-file .nav-file-title[data-path*=".ini"] {
display: none;
}
6 Likes
This topic was automatically closed 90 days after the last reply. New replies are no longer allowed.