惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

IT之家
IT之家
腾讯CDC
博客园 - Franky
S
SegmentFault 最新的问题
美团技术团队
阮一峰的网络日志
阮一峰的网络日志
J
Java Code Geeks
Y
Y Combinator Blog
Engineering at Meta
Engineering at Meta
Microsoft Security Blog
Microsoft Security Blog
MongoDB | Blog
MongoDB | Blog
I
InfoQ
T
Tailwind CSS Blog
Hugging Face - Blog
Hugging Face - Blog
B
Blog RSS Feed
博客园 - 叶小钗
博客园_首页
有赞技术团队
有赞技术团队
雷峰网
雷峰网
量子位
小众软件
小众软件
月光博客
月光博客
U
Unit 42
D
DataBreaches.Net

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
Explobar: Fixing That Surprisingly Annoying Friction in W...
Oleg Shilo · 2026-05-06 · via DEV Community

If you do most of your work in a terminal, this post may feel only mildly relevant.

But if your day often starts in Windows Explorer, the gap between browsing files and acting on them can be surprisingly clumsy.

You open a folder, inspect files, jump between project directories, right-click things, copy paths, open terminals, launch editors, and repeat the same small rituals dozens of times a day. None of these steps is difficult on its own. Together, they quietly drain momentum.

That is the problem Explobar is built to solve.

The Windows Explorer gap

Windows Explorer is still the default file system workspace for many developers on Windows. Not for everything, of course, but for plenty of real work:

  • opening a repo you just cloned
  • browsing generated files
  • inspecting logs, assets, build output, or config
  • comparing folders
  • jumping into the right directory before launching tools

This is especially common in what you could call a gemba workflow: you start where the work physically is, in the file system, and act from there.

The issue is not that Explorer is bad at browsing files. The issue is that acting on those files usually takes too many steps. Open Terminal. Copy path. Paste path. Launch an editor. Run a helper script. Open properties. Create a file. Create a folder. Jump to a recent location.

Explorer makes these actions possible, but not fluid.

A note on QTTabBar

It is worth acknowledging QTTabBar here because, for years, it was the tool that made Explorer genuinely usable for power users and developers.

It proved that Explorer could become far more productive with the right extensions around it.

The problem is that this approach has become much less viable. Windows changed the Explorer hosting model, especially around Windows 11, and that effectively broke the assumptions tools like QTTabBar depended on. What used to be a powerful extension point turned into a fragile maintenance problem.

So this is not a criticism of QTTabBar. It is simply a recognition that Windows moved on in a way that practically killed one of the best Explorer productivity tools many of us relied on.

Terminal-first developers already have a solution

It is worth being precise here: if you are already living in a terminal, this problem is almost irrelevant.

Shell users have fast navigation, aliases, scripts, history, fuzzy finders, editor integration, and automation built into the workflow. The handoff from "I am looking at something" to "I want to act on it" is already very short.

Explobar is not trying to replace that world.

It is for developers who work on Windows and still use Explorer as a usual starting point: people who navigate visually first, then want immediate access to the tools and commands that matter in that context.

What Explobar does

Explobar adds a keyboard-driven toolbar to Windows Explorer.

When you trigger it, a toolbar appears right where you are working, with awareness of the current folder and selected files. From there, you can launch apps, run custom commands, open recent locations, trigger built-in file actions, or wire in your own automation.

Explobar in action

Conceptually, Explobar covers some of the same ground as Explorer right-click shell extensions: it gives you context actions for the files and folders in front of you.

But it is dramatically faster in practice because it is not competing with Explorer's own context menus or with the hundreds of third-party apps that keep adding entries there. Instead of digging through an overloaded menu tree, you get a focused toolbar built around your workflow.

And that is the key difference: you are in complete control of what those context actions are. You can keep just a few essential buttons, or define as many actions as your workflow needs.

In practice, that means less of this:

  • copy path
  • switch windows
  • type the command again
  • dig through menus

And more of this:

  • navigate > select > trigger

That is the core idea: reduce the distance between seeing something and doing something.

Just as importantly, Explobar avoids the integration model that made older Explorer extensions fragile. It is not a shell extension tightly embedded into Explorer. It is a simple, standalone, zero-dependency app running outside the Explorer process.

That design choice matters. If Explorer changes internally, Explobar is far less exposed than tools that live inside Explorer itself.

Why this is interesting

Explobar is lightweight in concept, but it opens up a very useful layer of customisation.

At the centre of the app is a very practical idea: the toolbar is just a set of buttons and actions fully defined by the user in a declarative config file.

You can keep it simple with a YAML config and a few buttons for Terminal, Notepad, recent folders, or file actions. That alone removes plenty of friction.

But the model does not stop at static launchers. If you need something more advanced, like calculating hashes for all selected files, you can attach custom logic through a small .NET assembly or even a single C# .cs file.

That is what makes it appealing for developers:

  • easy to start
  • fast to adapt
  • powerful if you want to grow into it

Who should care

Explobar is a good fit if:

  • you develop on Windows
  • Explorer is part of your normal daily workflow
  • you often launch tools from folders or file selections
  • you want less context-switching between browsing and doing

If your workflow already begins and ends in PowerShell, Bash, or Windows Terminal, the benefit may be limited.

If your workflow regularly begins in Explorer, Explobar makes a lot more sense.

Final thought

A lot of developer tooling focuses on editors, terminals, and cloud workflows. That makes sense. But local file-system work is still part of the day for many Windows developers.

Explobar is a focused answer to that reality. It does not try to replace your terminal or your editor. It just removes friction from the place where many Windows workflows still begin: Explorer.

If this sounds like your workflow, the project is on GitHub.
Post your questions, suggestions, bug reports there: https://github.com/oleg-shilo/explobar.
Or if you prefer, here in this thread.

And installation on Windows is as simple as:

winget install explobar

Enter fullscreen mode Exit fullscreen mode