Files
omarchycn/manual/19-shell-tools.md
T
David Heinemeier HanssonandClaude Fable 5 1ae83f1606 Add a switchers chapter and fix drift found on a second manual pass
Add "Coming From Mac or Windows" as chapter 3: a translation layer for
Cmd/Win instincts rather than a feature tour.

Fill the remaining coverage gaps: fcitx5 input methods, laptop speaker
tuning, touchpad haptics, crash capture in the toggle table, the
installable font list, and the ChatGPT Desktop and Grok Bot entries.

Correct claims that drifted from the source: the network and bluetooth
bar icons no longer launch nmtui/bluetoothctl, monitor scaling steps
rather than cycles, and the display widget's scroll steps brightness.

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
2026-08-13 22:52:13 +02:00

2.9 KiB

Shell Tools

In addition to the standard Linux tools, Omarchy also ships with a bunch of enhanced shell tools. Here are the key ones.

fzf

fzf gives you fuzzy finding of files via the ff alias. Go to any directory, type ff, and you'll be able to fuzzy find your way to any file in that tree, while seeing a preview of the files you're narrowing down on the right-hand side.

You can use Ctrl + R to use fzf to fuzzy find through your command history.

This tool is also used by Neovim when you type Space Space.

The full manual can be found via man fzf.

Zoxide

Zoxide is a replacement for cd. It remembers the directories you've been in, so you can more easily jump to them next time. Say you do cd ~/.config/omarchy once. Next time, you can just do cd omarchy (or even just cd oma), and Zoxide will take you directly there.

The full manual can be found via man zoxide.

ripgrep

ripgrep searches the contents of files by using rg <pattern> <path>, like rg Controller app/ to find all mentions of Controller in the directory app.

This tool is also used by Neovim when you type Space S G.

The full manual can be found via man rg.

eza

eza is a replacement for ls. It gives you directory listings with more information, color, and icons. By default, eza has been aliased as ls. You can also use lt to get a listing of two-deep levels of nesting. lsa gives you a listing including hidden files. And lta a nested listing with hidden files.

The full manual can be found via man eza.

fd

fd is an easier to use replacement for find. Use fd person.rb to find a file called person.rb within the current tree. fd person.rb / will search the entire file system. fd person.rb / -H searches the entire file system, including hidden directories.

The full manual can be found via man fd.

bat

bat is cat with syntax highlighting, line numbers, and paging. Run bat somefile.rb and you'll see why it's hard to go back. It's also quietly doing work for you elsewhere: it's what colors your man pages, and what renders the previews in ff.

The full manual can be found via man bat.

tldr

tldr is the antidote to man pages that open with three screens of history before showing you a single example. tldr tar gives you the handful of invocations you actually wanted.

yt-dlp

yt-dlp downloads video from YouTube and hundreds of other sites. yt-dlp <url> grabs the best quality available into the current directory.

The full manual can be found via man yt-dlp.

try

try makes it easy to manage programming experiments with date-stamped directories. All experiments live in ~/Work/tries and you can access them via try.