In this mode, foot listens on a UNIX socket and creates terminal windows when clients connect. A connecting client sends argc/argv to the server, and the server instantiates a new terminal window. When the terminal window is closed, the exit code is sent back to the client. |
||
|---|---|---|
| completions | ||
| doc | ||
| scripts | ||
| .gitignore | ||
| .gitlab-ci.yml | ||
| base64.c | ||
| base64.h | ||
| commands.c | ||
| commands.h | ||
| config.c | ||
| config.h | ||
| csi.c | ||
| csi.h | ||
| fdm.c | ||
| fdm.h | ||
| font.c | ||
| font.h | ||
| foot.desktop | ||
| foot.info | ||
| footrc | ||
| generate-version.sh | ||
| grid.c | ||
| grid.h | ||
| input.c | ||
| input.h | ||
| keymap.h | ||
| LICENSE | ||
| log.c | ||
| log.h | ||
| main.c | ||
| meson.build | ||
| osc.c | ||
| osc.h | ||
| PKGBUILD | ||
| README.md | ||
| render.c | ||
| render.h | ||
| search.c | ||
| search.h | ||
| selection.c | ||
| selection.h | ||
| server.c | ||
| server.h | ||
| shm.c | ||
| shm.h | ||
| slave.c | ||
| slave.h | ||
| stride.h | ||
| terminal.c | ||
| terminal.h | ||
| tllist.h | ||
| tokenize.c | ||
| tokenize.h | ||
| vt.c | ||
| vt.h | ||
| wayland.c | ||
| wayland.h | ||
foot
foot is a fast Wayland terminal emulator.
Index
Features
- Fast (TODO insert benchmark results here)
- Wayland native
- DE agnostic
- User configurable font fallback
- Scrollback search
- Color emoji support
Non-features
This is a non-exhaustive list of things some people might consider being important features (i.e. "must-haves"), that are unlikely to ever be supported by foot.
- Tabs
- Multiple windows
What does not work?
This is a list of known, but probably not all, issues:
-
Unicode combining characters
Examples: á, 👪🏼 (may not be displayed correctly in your browser/editor)
-
Reflow text on window resize
Fonts
foot supports all fonts that can be loaded by freetype, including bitmap fonts and color emoji fonts.
Foot uses fontconfig to locate and configure the font(s) to use. Since fontconfig's fallback mechanism is imperfect, especially for monospace fonts (it doesn't prefer monospace fonts even though the requested font is one), foot allows you, the user, to configure the fallback fonts to use.
This also means you can configure each fallback font individually; you want that fallback font to use this size, and you want that other fallback font to be italic? No problem!
If a glyph cannot be found in any of the user configured fallback fonts, then fontconfig's list is used.
Shortcuts
At the moment, all shortcuts are hard coded and cannot be changed. It is not possible to define new key bindings.
Keyboard
-
shift+page up/page down
Scroll up/down in history
-
ctrl+shift+c
Copy selected text to the clipboard
-
ctrl+shift+v
Paste from clipboard
-
ctrl+shift+r
Start a scrollback search
While doing a scrollback search, the following shortcuts are available:
-
ctrl+r
Search backward for next match
-
ctrl+s
Search forward for next match
-
escape, ctrl+g
Cancel the search
-
return
Finish the search and copy the current match to the primary selection
Mouse
-
left - single-click
Drag to select; when released, the selected text is copied to the primary selection. Note that this feature is normally disabled whenever the client has enabled mouse tracking, but can be forced by holding shift.
-
left - double-click
Selects the word (separated by spaces, period, comma, parenthesis etc) under the pointer. Hold ctrl to select everything under the pointer up to, and until, the next space characters.
-
left - triple-click
Selects the entire row
-
middle
Paste from primary selection
Requirements
Running
- fontconfig
- freetype
- pixman
- wayland (client and cursor libraries)
- xkbcommon
Building
In addition to the dev variant of the packages above, you need:
- meson
- ninja
- wayland protocols
- ncurses
- scdoc
Installing
Arch Linux
Use makepkg to build
the bundled PKGBUILD run makepkg in the source root
directory)..
Note that it will do a profiling-guided build, and that this requires a running wayland session since it needs to run an intermediate build of foot.
Other
Foot uses meson. If you are unfamiliar with it, the official tutorial might be a good starting point.
I also recommend taking a look at the bundled Arch PKGBUILD file, to see how it builds foot.