1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-29 23:24:55 +02:00
tldr/pages/common/alacritty.md
2025-01-19 22:04:02 +05:30

32 lines
971 B
Markdown

# alacritty
> Cross-platform, GPU-accelerated terminal emulator.
> More information: <https://github.com/alacritty/alacritty>.
- Start a new Alacritty process and create a window:
`alacritty`
- 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`):
`alacritty --working-directory {{path/to/directory}}`
- [e]xecute a command in a new Alacritty window (also works with `alacritty msg create-window`):
`alacritty -e {{command}}`
- Use an alternative configuration file (defaults to `$XDG_CONFIG_HOME/alacritty/alacritty.toml`):
`alacritty --config-file {{path/to/config.toml}}`
- Run with live configuration reload enabled (can also be enabled by default in `alacritty.toml`):
`alacritty --live-config-reload --config-file {{path/to/config.toml}}`