Home

Awesome

ModalFileManager

Richard's GitHub stats

This project is for creating a file manager using web technologies. My original design was based on NW.js and can be found here. This version uses the same Svelte based frontend code, but the backend is a Wails 2 implementation. By using this implementation, I no longer use command line rm, cp, etc. commands. It is fully coded using Go and runs much faster than the previous versions.

Currently, it can't transfer files to other programs with Drag and Drop due to a limitation of the web technologies used. I should be able to get past this limitation soon by using lower level commands to the operating system which I will be exploring with this new Wails 2 implementation.

This file manager is designed around the same principle as Vim: a state controlled keyboard actions. The number of states isn't fixed, but very programmable. Therefore, an infinite number of keyboard configurations can be created and used. This is the main difference from other file managers. The Favorites extensions shows a good example of extending the number of states by adding a “fav” state.

This picture shows Modal File Manager in it's default theme.

Modal File Manager - Buffy Theme

A small gif showing Modal File Manager in action.

Using Modal File Manager Some

Disclamer: This program can permanently delete directories and files. Use at your own risk! I accept no liability for lost information from the use of this software. User beware! But, if you have a major problem, please let me know so that I can look for solutions. Deletions currently default to moving to the trashcan on new installations.

Table of Contents

Philosophy

I started my programming career with Emacs as my main text editor on a main frame computer in college (after they quit using punch cards!). I really loved Emacs, but had a very hard time remembering all the key commands. I ended up using Vim once for a class I had (the teacher loved Vim) and hit the perverbial Vim wall -- How do I exit this thing! I finally had to kill the process. So, I went back to Emacs.

With Spacemacs and Doom-emacs, I learned that the Vim style keyboard was much more efficient. But, I kept going back to the Emacs key memory. I finally decided to really give Vim a run with neovim on my MacBook Air. I even installed Spacevim and really liked it. Now, I'm fully comfortable in the Vim style keyboard (but far from mastering it completely) and have adapted it to many other programs along the way. My current editor of choice is NeoVim with the LazyVim configuration which is the fastest programming editor I've ever used. It is great!

But, I've never been happy with the file managers I've used. fman is great, but it is no longer actively being maintained and expanded upon. It is very slow in large directories and I also don't really like python: it's API language. So, I decided to jump in and make one to suit me better. This is how Modal File Manager was started. I wanted something that was as configurable as TkDesk was (if anyone remembers it), but with a modal keyboard model for hotkeys. To take it even further, new modes and keymaps can be added with extensions.

Modal File Manager is also somewhat minimal in the UI. Many graphical file managers have buttons, shelves, etc. all over the place with information everywhere. I decided to make the main interface as low keyed as possible with all other information in the status line or extras panel. Extra file information is on the status line for the current cursor location. More information is displayed in the extras panel as well (the side opposite the current pointer shows extra information instead of the other file pane. When turned off, it automatically goes back to the file pane that was showing before switching.).

Since there are so many dual pane file managers available, I knew this would never be a marketable product (and I did not want the hassle of endless customer complaint over a feature not working the way they want it). Therefore, I'm making this an open source project to hopefully get some help from others to help really make this thing shine. To date, I haven't received any comments or help with this program. But, my number of stars on GitHub climb every week!

Therefore, I hope you enjoy this little program as much as I have. Feel free to sponsor the project, help code some of it (just send in the pull requests), or just give me some tips along the way. Any help is appreciated.

I've created multiple open source resources (I have around 80 GitHub repositories), but this is the first full product. Therefore, please bear with me as I learn about maintaining and supporting an open source project.

Current Feature Set

All Dracula based themes are here with permission from the author. Please support his great work at Dracula Themes. The Dracula "Buffy" theme is my preferred theme for everything.

Some Limitations

Because this is a web technologies application, there are certain things that it just can't do and I'm not sure if they can be done at this level. Therefore, this will not completely remove your dependency on using the Finder application. But, these instances are not everyday items for which we use a file manager. As I see it, these items are not doable, but I would love for someone to prove me wrong:

Installation

This project is a Wails 2 project. If you want to compile the program yourself, you will need to have Wails, go language from Google, and Node installed on your computer. You will also need a working git command line to download extensions and themes. The most recent version is what is compiled from these sources. When I have tested many changes, I will release a new version for downloading. So, if you like being on the bleeding edge, clone this repo with:

git clone https://github.com/raguay/ModalFileManager.git

And follow these instructions for compiling the sources. I'm currently building Modal File Manager using macOS and Debian Linux Arm Achitecture, but it should build as is on other Linuxes as well. I haven't fully debugged the Linux build yet (deleting to trash isn't working for example) and therefore I'm not giving a compiled release for it. I'm working on making this available for Windows, Linux, and macOS.

Once you have the prerequisites installed, to build the program, simply type:

wails build 

The fully compiled program should be in the build/bin directory.

You can run in developer mode in which you can debug the frontend code by running:

wails dev 

If you right click on the background of a dev build, the popup menu has the entry to 'inspect'. Clicking on it will open the developer tools to debug the frontend code.

Once Modal File Manager is installed, you will have to give mfm permission to access directories on your system.

Command Line

Modal File Manager takes command line arguments as well. I will be expanding this feature more and more to help with automation. On the macOS, you need to create an alias in your shell for the command line program. If you place the mfm.app file in your /Applications folder on a macOS system, you would add this to your .zshrc file in your home directory:

alias mfm='/Applications/mfm.app/Contents/MacOS/mfm'

Once you reload the shell, you can give one or two file/directory paths to open Modal File Manager in those directories. For example:

mfm '/User/raguay/Dropbox (Personal)'

will open the Modal File Manager in my personal dropbox folder in the left pane. Notice, you have to give the quote marks because of the spaces and parentheses. If you give two paths, then the first is the left pane while the second is the right pane.

Upgrading

If a new version comes out with new default key mappings, you will either have to manually alter the key maps or delete the keyMaps directory in the Modal File Manager configuration directory. Since I haven't ever changed the default key maps, this is rarely ever needed. Just check the change log for the new version to see if you need to do that or not.

Command Line Programs Used

There are a few command line programs I use with Modal File Manager. They are:

All of the programs should be downloaded and in your shell's path. Modal File Manager doesn't assume location for anything except for it's own configuration files. But, if Modal File Manager can't find the program, you can adjust the path used in the preferences general tab (Command Prompt command is Show Preferences).

Configuration Files

All extensions, themes, keyboard layouts, and anything else for configuring the Modal File Manager is found in it's main configuration directory. On Linux and macOS, it is located at: ~/.config/modalfilemanager. It will be in the Windows User directory, but I haven't really looked at Windows functionality yet.

In this configuration directory, there are the themes, extensions, and keyMaps directories that contain their respective subfolders and files. Please refer the specific section for each directory for more details.

There is the history.json file, config.json file, and the theme.json files in the configuration directory. Also, extensions will create and store their configuration files in this directory as well (at least, that is what I advise extension authors).

The history.json file contains a list of directories that the Modal File Manager has visited. I use this to quickly pull up possible paths to go to in the file manager.

The config.json file contains the environment variables used to launch command line commands and whether or not to use the trash-cli program to delete files and directories.

Modal File Manager doesn't use the actual theme files downloaded from GitHub. Those are stored in the themes directory and are just referenced. All actually used theming is in the theme.json file. When a user changes themes, that file is changed. Therefore, be careful if you manually change this file and want to keep it. It is best to create a theme in the theme directory and load it in the program. My tutorial Modal File Manager: Update and Extensions walks through creating a theme using the Preferences Panel.

All configuration files should be edited from the Show Preferences command prompt command.

Source File Layout

The directory structure is:

- modalfilemanager
  |
  - frontend
    |
    - src 
      |
      - components                  Here are all the Svelte components for the UI
      - modules                     These are JavaScript Helper files with the data structures used.
      - stores                      This directory contains all the Svelte Store items
      - Start.svelte                This is the main program to start MFM.
      - main.js                     This installs the main program into the HTML
  - app.go                          This is the go language application backend
  - main.go                         This is the go language main routine.
  - wailsjs                         This is the JavaScript backend routines generated by wails.
  - build                           This is the build directory that wails compiles everything into 
  - appicon.png                     The application icon 

All low level functions are in the modules/OS.js and accesses all the functions defined in the app.go file.

Editing files

Files will be edited (normal mode key e) using editor specified in the xBar plugin currentFiles.1h.rb.

To use with the xBar plugin, you will need to have xBar installed and the currentFiles.1h.rb plugin installed and configured. You can also use the Alfred BitBar Workflow to control the plugin.

Alternatively, you can use the TextBar program with the Current Files and Editor plugin installed.

You can use the Alfred with the My Editor Workflow to control the editor and edit files.

If the above editor setup isn't on the system, it will use the operating system defaults to open the file in the default file editor.

Preferences

With the command prompt command of Show Preferences, you can now open a new panel over the file manager that shows all the program preferences. It is setup as a tab system with a General, Theme, and Extension tab.

The General tab allows the user to delete, edit, or add environment variables to the running of command line programs. This give the user complete control over the environment variables used in launching commands from Modal File Manager. You can also turn on/off the use of the trashcan for deletions.

The Theme tab allows you to create, update, and delete themes from the Modal File Manager. My tutorial Modal File Manager: Update and Extensions walks through creating a theme using the Preferences Panel.

The Extension tab allows you to create, edit, and delete extensions from the Modal File Manager. The creation and editing of an extension will open the main file for the extension in the code editor that has been setup and moves the Modal File Manager to the extension's directory in the pane opposite the current cursor.

Things in the Works

Default Key Bindings

Normal Mode

Key PressCommand Executed
rreloadPane
pswapPanels
dduplicateEntry
eeditEntry
mmoveEntries
ccopyEntries
xdeleteEntries
ggoTopFile
GgoBottomFile
ArrowDownmoveCursorDown
ArrowUpmoveCursorUp
lgoDownDir
hgoUpDir
EnteractionEntry
TabcursorToNextPane
kmoveCursorUp
jmoveCursorDown
ichangeModeInsert
vchangeModeVisual
/toggleQuickSearch
stoggleExtraPanel
<cmd>ptoggleCommandPrompt
:toggleCommandPrompt
.reRunLastCommand
,toggleFilter
OopenOppositePanel

Visual Mode

Key PressCommand Executed
EscapechangeModeNormal
kmoveCursorUpWithSelect
jmoveCursorDownWithSelect
ArrowDownmoveCursorDown
ArrowUpmoveCursorUp
:toggleCommandPrompt
aselectAll
AunselectAll
rselectRegExp

Insert Mode

Key PressCommand Executed
EscapechangeModeNormal
dnewDirectory
fnewFile
rrenameEntry
:toggleCommandPrompt

Command Prompt Commands

These commands can be ran from the command prompt. They all act upon the current cursor.

Command NameCommand DescriptionCommand Function Name
lockThis will lock in the quick search results.lock
unlockThis will unlock in the quick search results.unlock
Move Cursor UpThis will move the cursor up one linemoveCursorUp
Move Cursor Up with SelectionThis will move select the current entry and move the cursor up one line.moveCursorUpWithSelect
Move Cursor DownThis will move the cursor down one line.moveCursorDown
Move Cursor Down with SelectionThis will move the cursor down and select the previous entry.moveCursorDownWithSelect
Change Mode to NormalSet the normal mode.changeModeNormal
Change Mode to InsertSet the insert mode.changeModeInsert
Change Mode to VisualSet the visual mode.changeModeVisual
Cursor to Next PaneThis will move the cursore to the opposite pane.cursorToNextPane
Action EntryThis will open a file or go into a directory.actionEntry
Go Up a DirectoryGo to the parent directory.goUpDir
God Down a DirectoryIf the current entry is a directory go to it.goDownDir
Go to Bottom FileMove the cursor to the bottom most file.goBottomFile
Go to Top FileMove the cursor to the top most file.goTopFile
Delete EntriesDelete all selected entries or the one under the cursordeleteEntries
Copy EntriesCopy the selected entries or the one under the cursor to the other pane.copyEntries
Move EntriesMove the selected entries or the one under the cursor to the other pane.moveEntries
Edit EntryOpens the file under the cursor in the editor specified.editEntry
Duplicate EntryMake a copy of the current entry with "_copy" added to it.duplicateEntry
New FileCreate a new file in the current pane.newFile
New DirectoryCreate a new directory in the current pane.newDirectory
Rename EntryRename the current entry.renameEntry
Swap PanelsSwap the panel contents.swapPanels
Toggle Quick SearchShow/Hide the Quick Search panel.toggleQuickSearch
Reload PaneReload the Current Pane.reloadPane
Toggle Extra PanelShow/Hide the extra panel.toggleExtraPanel
Edit DirectoryOpen the Edit Directory for the current panel.editDirectory
Toggle Command PromptShow/Hide the command prompt.toggleCommandPrompt
Toggle GitHub ImporterShow/Hide the GitHub importer panel for searching for themes and extensions on GitHub and installing them.toggleGitHub
Refresh PanesThis will reload files in both the left and right pane.refreshPanes
Refresh Left PaneThis will reload the files in the Left Pane.refreshLeftPane
Refresh Right PaneThis will reload the files in the Right Pane.refreshRightPane
Rerun Last CommandThis will rerun the last command along with it the number of times it was ran.reRunLastCommand
Toggle FilterToggles the show all and default filters.toggleFilter
Show All FilterSets to show all Entries.setShowAllFilter
Show Only Non-System Files/FoldersSets the default filter of not showing system files/folders.setDefaultFilter
Open in Opposite PanelOpens the directory the cursor is on or the directory the cursor is in in the opposite panel.openOppositePanel
Reload ExtensionsReload all the extensions, keyboard maps, and theme. Still not working completely.reloadExtensions
Select AllSelect all entries in the current panel.selectAll
Unselect AllUnselect all entries in the current panel.unselectAll
goHomeGo to the home directory.goHome
MinimizeMinimize the program.minimizeWindow
QuitQuit the program.quitApp
Show PreferencesShow the program preferences and allow editing them.
Reload ExtensionsReload all extensions.
Save Default KeymapsSave the default keymaps over the current keymap filessaveDefaultKeymaps
Select by Regular ExpressionSelect entries using a regulare expression.selectRegExp

Extension Commands

These commands require inputs and supply results. Therefore these commands can`t be used in hotkeys or the command prompt. They are loaded and used in a different way as well. Please refer to the Creating Extensions Section for more details.

Function NameDescription
setCursorSet the cursor to the file name given in the current panel.
getCursorGet the current cursor.
cursorToPaneSet the cursor to the pane given. Either "left" or "right"
changeDirChange the directory of a pane and make it the current.
addKeyboardShortA a shortcut for a keyboard map.
getLeftFileGet the current file for the left pane.
getRightFileGet the current file for the right pane.
getThemeGet the current values for the theme.
setThemeSet the values for the current theme.
getOSGet the local OS name.
addDirectoryListenerAdd a listener to directory changes.
getLastErrorreturns the last error.
getSelectedFilesReturns a list of Entries that have been selected.
getCurrentFileGet the current file.
getCurrentPaneGet the pane that is currently active.
pickItemShow the user a list of items to pick from.
addSpinnerAdd a message box spinner value.
updateSpinnerUpdate a message box spinner value.
removeSpinnerRemove a message box spinner value.
keyProcessorSend a keystroke to be processed.
stringKeyProcessorSend a string of keystrokes to be processed.
askQuestionAsk a question and get the response.
pickItemChoose from a list of items.
showMessageShow a message to the user.
createNewModeAllows the creation of a new mode for keyboard commands.
changeModeChange to mode given.
switchViewChange to new program view. Currently filemanager or preferences.
copyEntriesCommandCopy the entry list to the destination entry.
moveEntriesCommandMove the entry list to the destination entry.
deleteEntriesCommandDelete the entry list
editEntryCommandEdit the entry
getRightDirGet the directory path for the right panel.
setRightDirSet the directory path for the right panel.
getLeftDirGet the directory path for the left panel.
setLeftDirSet the directory path for the left panel.
addExtraPanelProcessorAdd a object for processing extra panel informaiton.
addWatcherAdd a file or directory watcher. Currently not working.
removeWatcherRemove a file or directory watcher. Currently not working.

Creating Themes

A theme is a GitHub repository or a repository on your system. It is setup as a normal npm project with a package.json file. The package.json file should be similar to this:

{
  "name": "dracula-ThemeModalFileManager",
  "version": "1.0.0",
  "description": "The Dracula theme for Modal File Manager.",
  "keywords": [
    "modalfilemanager"
  ],
  "author": "Richard Guay",
  "license": "MIT",
  "mfmtheme": {
    "name": "dracula-ThemeModalFileManager",
    "description": "Dracula theme for Modal File Manager.",
    "type": 0,
    "github": "",
    "main": "dracula.json"
  }
}

The subheading mfmtheme contains the information the program will use to load the theme. The main is set to the path of the JSON file containing the themes values. If it's in the top of the directory, then use just the file name as seen above.

The type is 0 for local only and 1 for a GitHub download. The github value is the URL to the repository on GitHub. The description is shown to the user that should accurately describe the theme.

The Theme JSON file is like this one:

{
  "font":"Fira Code, Menlo",
  "fontSize":"12pt",
  "cursorColor": "#363443",
  "selectedColor": "#FFCA80",
  "backgroundColor": "#22212C",
  "textColor": "#F8F8F2",
  "borderColor": "#1B1A23",
  "normalbackgroundColor": "#80FFEA",
  "insertbackgroundColor": "#8AFF80",
  "visualbackgroundColor": "#FF80BF",
  "Cyan": "#80FFEA",
  "Green": "#8AFF80",
  "Orange": "#FFCA80",
  "Pink": "#FF80BF",
  "Purple": "#9580FF",
  "Red": "#FF9580",
  "Yellow": "#FFFF80"
}

It should be a proper JSON structure with these definitions. Change the color values as you want.

Creating Extensions

TODO: Documentation Coming Soon.

Tutorials on Modal File Manager

These tutorials are based on using my original, NW.js version of the Modal File Manager:

This list of tutorials are with the latest version of Modal File Manager:

Icon

I finally made my first attempt at an icon for Modal File Manager. The files are in the frontend/icons directory. Any constructive criticizm is welcome.

Icon

Sponsor this project

You can now sponsor my work on this project. The more sponsors I get, the more time I'll focus on development.

Sponsor