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.
A small gif showing Modal File Manager in action.
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.
:
in any mode or <ctrl>p
in normal mode).toggleExtraPanel
command or “s” in normal mode). It is fairly bare right now due to changing from NW.js to the Wails 2. I have lot of ideals, but haven't added them yet. Extensions can place special content in this panel as well (Project Manager extension is a good example).5j
will move the cursor 5 entries down the list).q
) shows a list of matching entries from history and then below the current directory. Pressing Escape
leaves the Directory Bar in the original location. If you type letters after the current directory, all subdirectories are searched to match that grouping of letters and added to the dropdown list after directories in the history are displayed.~/.myeditorchoice
file (see Editing Files
below). Otherwise, the system editor for the file type will be used.Show Preferences
Command Prompt command.Toggle GitHub Importer
command on the command prompt.fav
mode, and much more.All Dracula based themes are here with permission from the author. Please support his great work at Dracula Themes.
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:
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:
rm -R build
mkdir build
cp picts/appicon.png build
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:
rm -R build
mkdir build
cp picts/appicon.png build
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.
I recommend using the Maskfile to run Mask scripts:
mask build
Just remember, this is beta quality software at the moment. Use at your own risk. I personally haven't built and tried this software on Windows, but one user is using it there. I have built it on Linux, but I haven't thoroughly tested it there yet.
You also need to make sure the command line programs used have been installed on your system to use some of the features.
Once Modal File Manager is installed, you will have to give mfm permission to access directories on your system.
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.
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.
There are a few command line programs I use with Modal File Manager. They are:
trash
command line program installed using brew install trash-cli
. You have to have HomeBrew installed on your system to use the brew
command line program. If the program isn't installed before installing mfm, then you will need to adjust the environment variable for PATH in the preferences to make sure it is in the path.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
).
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.
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.
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.
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.
Key Press | Command Executed |
---|---|
r |
reloadPane |
p |
swapPanels |
d |
duplicateEntry |
e |
editEntry |
m |
moveEntries |
c |
copyEntries |
x |
deleteEntries |
g |
goTopFile |
G |
goBottomFile |
ArrowDown |
moveCursorDown |
ArrowUp |
moveCursorUp |
l |
goDownDir |
h |
goUpDir |
Enter |
actionEntry |
Tab |
cursorToNextPane |
k |
moveCursorUp |
j |
moveCursorDown |
i |
changeModeInsert |
v |
changeModeVisual |
/ |
toggleQuickSearch |
s |
toggleExtraPanel |
<cmd>p |
toggleCommandPrompt |
: |
toggleCommandPrompt |
. |
reRunLastCommand |
, |
toggleFilter |
O |
openOppositePanel |
Key Press | Command Executed |
---|---|
Escape |
changeModeNormal |
k |
moveCursorUpWithSelect |
j |
moveCursorDownWithSelect |
ArrowDown |
moveCursorDown |
ArrowUp |
moveCursorUp |
: |
toggleCommandPrompt |
a |
selectAll |
A |
unselectAll |
r |
selectRegExp |
Key Press | Command Executed |
---|---|
Escape |
changeModeNormal |
d |
newDirectory |
f |
newFile |
r |
renameEntry |
: |
toggleCommandPrompt |
These commands can be ran from the command prompt. They all act upon the current cursor.
Command Name | Command Description | Command Function Name |
---|---|---|
lock |
This will lock in the quick search results. | lock |
unlock |
This will unlock in the quick search results. | unlock |
Move Cursor Up |
This will move the cursor up one line | moveCursorUp |
Move Cursor Up with Selection |
This will move select the current entry and move the cursor up one line. | moveCursorUpWithSelect |
Move Cursor Down |
This will move the cursor down one line. | moveCursorDown |
Move Cursor Down with Selection |
This will move the cursor down and select the previous entry. | moveCursorDownWithSelect |
Change Mode to Normal |
Set the normal mode. | changeModeNormal |
Change Mode to Insert |
Set the insert mode. | changeModeInsert |
Change Mode to Visual |
Set the visual mode. | changeModeVisual |
Cursor to Next Pane |
This will move the cursore to the opposite pane. | cursorToNextPane |
Action Entry |
This will open a file or go into a directory. | actionEntry |
Go Up a Directory |
Go to the parent directory. | goUpDir |
God Down a Directory |
If the current entry is a directory go to it. | goDownDir |
Go to Bottom File |
Move the cursor to the bottom most file. | goBottomFile |
Go to Top File |
Move the cursor to the top most file. | goTopFile |
Delete Entries |
Delete all selected entries or the one under the cursor | deleteEntries |
Copy Entries |
Copy the selected entries or the one under the cursor to the other pane. | copyEntries |
Move Entries |
Move the selected entries or the one under the cursor to the other pane. | moveEntries |
Edit Entry |
Opens the file under the cursor in the editor specified. | editEntry |
Duplicate Entry |
Make a copy of the current entry with "_copy" added to it. | duplicateEntry |
New File |
Create a new file in the current pane. | newFile |
New Directory |
Create a new directory in the current pane. | newDirectory |
Rename Entry |
Rename the current entry. | renameEntry |
Swap Panels |
Swap the panel contents. | swapPanels |
Toggle Quick Search |
Show/Hide the Quick Search panel. | toggleQuickSearch |
Reload Pane |
Reload the Current Pane. | reloadPane |
Toggle Extra Panel |
Show/Hide the extra panel. | toggleExtraPanel |
Edit Directory |
Open the Edit Directory for the current panel. | editDirectory |
Toggle Command Prompt |
Show/Hide the command prompt. | toggleCommandPrompt |
Toggle GitHub Importer |
Show/Hide the GitHub importer panel for searching for themes and extensions on GitHub and installing them. | toggleGitHub |
Refresh Panes |
This will reload files in both the left and right pane. | refreshPanes |
Refresh Left Pane |
This will reload the files in the Left Pane. | refreshLeftPane |
Refresh Right Pane |
This will reload the files in the Right Pane. | refreshRightPane |
Rerun Last Command |
This will rerun the last command along with it the number of times it was ran. | reRunLastCommand |
Toggle Filter |
Toggles the show all and default filters. | toggleFilter |
Show All Filter |
Sets to show all Entries. | setShowAllFilter |
Show Only Non-System Files/Folders |
Sets the default filter of not showing system files/folders. | setDefaultFilter |
Open in Opposite Panel |
Opens the directory the cursor is on or the directory the cursor is in in the opposite panel. | openOppositePanel |
Reload Extensions |
Reload all the extensions, keyboard maps, and theme. Still not working completely. | reloadExtensions |
Select All |
Select all entries in the current panel. | selectAll |
Unselect All |
Unselect all entries in the current panel. | unselectAll |
goHome |
Go to the home directory. | goHome |
Minimize |
Minimize the program. | minimizeWindow |
Quit |
Quit the program. | quitApp |
Show Preferences |
Show the program preferences and allow editing them. | |
Reload Extensions |
Reload all extensions. | |
Save Default Keymaps |
Save the default keymaps over the current keymap files | saveDefaultKeymaps |
Select by Regular Expression |
Select entries using a regulare expression. | selectRegExp |
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 Name | Description |
---|---|
setCursor |
Set the cursor to the file name given in the current panel. |
getCursor |
Get the current cursor. |
cursorToPane |
Set the cursor to the pane given. Either "left" or "right" |
changeDir |
Change the directory of a pane and make it the current. |
addKeyboardShort |
A a shortcut for a keyboard map. |
getLeftFile |
Get the current file for the left pane. |
getRightFile |
Get the current file for the right pane. |
getTheme |
Get the current values for the theme. |
setTheme |
Set the values for the current theme. |
getOS |
Get the local OS name. |
addDirectoryListener |
Add a listener to directory changes. |
getLastError |
returns the last error. |
getSelectedFiles |
Returns a list of Entries that have been selected. |
getCurrentFile |
Get the current file. |
getCurrentPane |
Get the pane that is currently active. |
pickItem |
Show the user a list of items to pick from. |
addSpinner |
Add a message box spinner value. |
updateSpinner |
Update a message box spinner value. |
removeSpinner |
Remove a message box spinner value. |
keyProcessor |
Send a keystroke to be processed. |
stringKeyProcessor |
Send a string of keystrokes to be processed. |
askQuestion |
Ask a question and get the response. |
pickItem |
Choose from a list of items. |
showMessage |
Show a message to the user. |
createNewMode |
Allows the creation of a new mode for keyboard commands. |
changeMode |
Change to mode given. |
switchView |
Change to new program view. Currently filemanager or preferences . |
copyEntriesCommand |
Copy the entry list to the destination entry. |
moveEntriesCommand |
Move the entry list to the destination entry. |
deleteEntriesCommand |
Delete the entry list |
editEntryCommand |
Edit the entry |
getRightDir |
Get the directory path for the right panel. |
setRightDir |
Set the directory path for the right panel. |
getLeftDir |
Get the directory path for the left panel. |
setLeftDir |
Set the directory path for the left panel. |
addExtraPanelProcessor |
Add a object for processing extra panel informaiton. |
addWatcher |
Add a file or directory watcher. Currently not working. |
removeWatcher |
Remove a file or directory watcher. Currently not working. |
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.
TODO: Documentation Coming Soon.
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:
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.
You can now sponsor my work on this project. The more sponsors I get, the more time I'll focus on development.