Customize Your Vault Like a Pro - Min, Max, Close Button Like Mac OS

Love the sleek, polished look of MacOS-style exit buttons? The Zen Minimal Exit Menu mod for Zen Browser introduces a refined, circular button layout for closing, minimizing, and maximizing windows—offering both functionality and aesthetic appeal. But why stop at the browser?

Customize Your Vault Like a Pro

In this instalment of Customize Your Vault Like a Pro, I’ll show how to port the Zen Minimal Exit Menu into Obsidian, giving your vault a more modern, streamlined window control design.

Read more →

Obsidian Plugins Showcase - Feb 27th, 2025

Another week, another batch of game-changing Obsidian plugins! Whether you’re fine-tuning your workflow, improving your note-taking efficiency, or adding a touch of automation, these new additions have something for everyone.


Missing Link File Creator is a plugin designed to streamline the process of managing uncreated note links in Obsidian.

Read more →

Customize Your Vault Like a Pro - File Explorer and Modal Windows

Next in Customize Your Vault Like a Pro, I’ll guide you through adding a sleek hover effect to file explorer and command palette items, plus showcasing some effects for modal windows like the command palette and settings.

Let’s start by adding a smooth animation to the padding property of the File Explorer.

.nav-file:hover, div.tree-item.nav-folder.iconic-item.is-collapsed:hover {
    padding: 0px 0px 0px 6px;
    transition: padding 70ms ease-in-out;
  }

When you hover over a file (.nav-file) or a collapsed folder (.tree-item.nav-folder.iconic-item.is-collapsed) in the navigation pane, the item shifts 6 pixels to the right by adding left padding. The shift happens smoothly over 70 milliseconds, thanks to the transition property, creating a subtle sliding effect. When you stop hovering, the padding returns to its original state, also with a smooth 70ms transition.

Read more →