FM is a complete File Manager for any shell. As fast as a CLI and as easy as a desktop UI, it easily integrates also with your own functions/commands.
Whether you are comfortable with the terminal or not, you spend a lot of time and effort just repeating basic commands like cd
, ls
, cat
, cp
, mv
, ln
, find
, grep
, mkdir
, touch
... or maybe you are switching back and forth from the Desktop File Manager to the terminal just to avoid it...
FM saves you all that repeated typing and switching, providing automatic feedback and all that basic tools at the press of a shortcut... and it can also integrate your own tools.
If you like FM, please, give it a star and share it with friends and colleagues!
FM has all the features that you would expect from a CLI but also from a Desktop File Manager... and actually some more. Here is an overview:
- Navigation with mouse or keyboard
- Unobtrusive, filterable menu with customizable shortcuts
- Jump to common dirs, saved favorites and recent visited dirs
- Automatic inline syntax-highlighted content preview of file/dir/results
- Search file names and/or file content with context and highlighted matches
- Easy management of favorite files and dirs in any shell
- Copy, cut, paste and link groups of files and dirs in one go (even from different locations)
- Automatic sudo prompt when needed
- Easy integration of your own functions/commands in the FM own menu
- Inline contextual help/documentation for each menu and section
- Zsh-widget: you can also get FM while typing commands in the zsh prompt: navigate, preview and automatically place the seleced paths to complete your command.
You can try FM on your system with the try-fm
docker image. It's a very quick and clean way to try it on your own filesystem without the need of installing it.
zsh
: The base shell scripting. Notice that you just needzsh
installed with the default config, but you can use FM with any shell. While MacOS adopted it as the default shell since Catalina, you can install it with the default package manager of any other system (e.g. for Ubuntu:sudo apt-get install zsh
).fzf
: Fundamental part of the TUI (fzf installation)ripgrep
: Faster replacement for grep (ripgrep installation)
In order to get the best experience with FM you should also install the following optional packages:
exa
: Modern replacementy forls
with better feedback (exa installation)fd
/fd-find
: Faster replacement forfind
(fd installation)bat
: "Acat
clone with wings" for syntax-highlighted preview (bat installation)
Add the following to your $HOME/.zshrc
:
-
if you use zinit(zplugin):
zinit ice --depth'1' atinit'source fm.zsh' atclone'./fm__compile' atpull'%atclone' zinit light ddnexus/fm
-
if you use zplug:
zplug "ddnexus/fm", hook-build:"./fm__compile"
-
if you use antigen:
antigen bundle ddnexus/fm
-
if you use zgen:
zgen load ddnexus/fm
-
if you don't use anything of the above:
- Clone or download the repo in your preferred
<FM-DIR-PATH>
- Replace the following
<FM-DIR-PATH>
placeholder with the actual path:source <FM-DIR-PATH>/fm.zsh
(in this case, remember to pull the repo periodically).
- Clone or download the repo in your preferred
To make it run faster, FM can be compiled with a simple command.
Run fm compile
only once, every time you update the repo.
Notice: the zinit
and zplug
installation commands shown above, compile FM automatically, so you don't need to do it manually.
-
Zsh shell
- No need for any configuration
-
POSIX compatible shells:
bash
,sh
, etc.:- Replace the following
<RC-FILE-PATH>
placeholder with the actual path for your shell (e.g. forbash
it would be$HOME/.bashrc
), and run:
zsh -c 'print "\n. $fm__root/launcher/fm.sh" >> <RC-FILE-PATH>'
- Restart your shell
- Replace the following
-
Fish shell
zsh -c 'mkdir -p $HOME/.config/fish; echo "\nsource $fm__root/launcher/fm.fish" >> $HOME/.config/fish/config.fish'
- Restart your shell
-
Other shells
- If you use some exotic shell that is not compatible with any of the launchers, you can port the 3 simple lines of the
fm.sh
launcher to your shell syntax and source it as indicated above. If you do so, please, submit a PR with your function, so it will be added. Thanks.
- If you use some exotic shell that is not compatible with any of the launchers, you can port the 3 simple lines of the
Just type fm
from any dir in any shell. You should be able to figure it out from there by taking a look at the menu (ctrl-space
), which offers also the inline usage notes and documentation.
The fm help
command will give you an overview about the FM environment and the variables that you can customize.
Suggestion: FM is designed to be easy to run and quit. You can make it a bit easier with an alias like alias f=fm
.
The FM favorites are working in any shell, however the widget
and the shell favorite aliases
are available only in the zsh
shell.
All the FM customizations consist in redefining some FM__*
variable in the ~/.zshrc
file regardless the shell you use. You can read the fm help
and the inline documentation in the FM menu (ctrl-space
) for details.
You can easily add your own functions/commands to the FM Menu and execute them as any other FM menu. Your tool will have access to the selected items and the other FM variables and functions.
You can read the inline documentation in the FM menu section Added Tools
and try the provided working examples for more details.
See Q&A
- The
exa --git ...
option is not fully git compliant nor consistent between platforms and OSs to be considered useful at this time, so it is not supported by FM. Specifically: if you add it to theFM__CMD_LS
variable it will break theDIR
view if the current dir is inside a working tree.
- If you like FM, please, give it a star and share it with friends and collegues. That's the most needed contribution ATM.
- Publish a review or a tutorial to help others
- Please, open an Issue if the documentation is not clear or if you find any bug.
- Pull requests are welcome! Before starting you may want to confirm whether your proposed changes are going to be useful for most users.
- Your feedback, suggestions, requests, bug-reports are welcome and also count as contributions!
The master
branch is the latest published release. It also contains docs and comment changes that don't affect the published code.
Expect any other branch to be experimental, force-rebased and/or deleted even without merging.
FM follows the Semantic Versioning 2.0.0. Please, check the Changelog for breaking changes introduced by mayor versions.
This software is available as open source under the terms of the GPL3 License.
Copyright © 2021 Domizio Demichelis