Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/andir/ate
awesome terminal emulator
https://github.com/andir/ate
Last synced: 3 days ago
JSON representation
awesome terminal emulator
- Host: GitHub
- URL: https://github.com/andir/ate
- Owner: andir
- License: agpl-3.0
- Created: 2019-05-09T20:28:31.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2023-05-01T05:56:44.000Z (over 1 year ago)
- Last Synced: 2024-08-03T18:15:58.152Z (3 months ago)
- Language: C
- Size: 92.8 KB
- Stars: 53
- Watchers: 3
- Forks: 11
- Open Issues: 8
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# ate - awesome terminal emulator
Is my personal terminal emulator tailor made for what I need and just what I need.
Goals:
- Work on X11
- Work on Wayland without XWayland
- Scrollback
- Reflow
- Emoji support
- Font resizing with ctrl-shift-plus/ctrl-shift-minus; ctrl-0 to reset the font size
- Compile time configurationNon-Goals:
- Parsing configuration filesThe application is trivial and maintaing your custom patch on top of this is
likewise. I do not intend to change a lot nor do I promisve compatibility with
any of your changes.## Configuration
You can change the configuration by setting `nixpkgs.config.ate` or passing an attribute set named `config.ate` to `callPackage`.
Example:
```
ate = pkgs.callPackage path/to/this/repo/default.nix {
config.ate = {
options = {
BLACK = "#000000";
RED = ...;
GREEN = ...;
YELLOW = ...;
BLUE = ...;
MAGENTA = ...;
CYAN = ...;
WHITE = ...;
BRIGHT_BLACK = ...;
BRIGHT_RED = ...;
BRIGHT_GREEN = ...;
BRIGHT_YELLOW = ...;
BRIGHT_BLUE = ...;
BRIGHT_MAGENTA = ...;
BRIGHT_CYAN = ...;
BRIGHT_WHITE = ...;
FOREGROUND_COLOR = ...;
BACKGROUND_COLOR = ...;
PIPECMD = path/to/a/command/which/processes/terminal/content/on/stdin;
};
keybindings = {
RESET_FONT = "control+0";
DECREMENT_FONT =
"control+shift+underscore"; # Works like Control+Shift+Minus on qwerty and qwertz
INCREMENT_FONT = "control+shift+plus";
PASTE = "control+mod1+y"; # Mod1 == Alt
PIPECMD = "control+mod1+u";
};
};
};