1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-07-01 20:15:23 +02:00
tldr/pages/common/alacritty.md

33 lines
977 B
Markdown
Raw Normal View History

2019-10-07 08:27:09 -05:00
# alacritty
> Cross-platform, GPU-accelerated terminal emulator.
> More information: <https://manned.org/alacritty>.
2019-10-07 08:27:09 -05:00
2025-01-19 17:34:02 +01:00
- Start a new Alacritty process and create a window:
2019-10-07 08:27:09 -05:00
`alacritty`
2025-01-19 17:34:02 +01:00
- Start the Alacritty daemon (without creating a window):
`alacritty --daemon`
- Create a new window using the already running Alacritty process:
`alacritty msg create-window`
- Start the shell in a specific directory (also works with `alacritty msg create-window`):
2019-10-07 08:27:09 -05:00
`alacritty --working-directory {{path/to/directory}}`
2025-01-19 17:34:02 +01:00
- [e]xecute a command in a new Alacritty window (also works with `alacritty msg create-window`):
2019-10-07 08:27:09 -05:00
`alacritty {{[-e|--command]}} {{command}}`
2019-10-07 08:27:09 -05:00
- Use an alternative configuration file (defaults to `$XDG_CONFIG_HOME/alacritty/alacritty.toml`):
2019-10-07 08:27:09 -05:00
`alacritty --config-file {{path/to/config.toml}}`
2019-10-07 08:27:09 -05:00
- Run with live configuration reload enabled (can also be enabled by default in `alacritty.toml`):
2019-10-07 08:27:09 -05:00
`alacritty --live-config-reload --config-file {{path/to/config.toml}}`