From 71d8dcd96a246d3b5421c608c0edc51c8e2d120b Mon Sep 17 00:00:00 2001 From: wayne Date: Mon, 7 Oct 2019 08:27:09 -0500 Subject: [PATCH] alacritty: add page (#3306) --- pages/common/alacritty.md | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 pages/common/alacritty.md diff --git a/pages/common/alacritty.md b/pages/common/alacritty.md new file mode 100644 index 000000000..788b16a5c --- /dev/null +++ b/pages/common/alacritty.md @@ -0,0 +1,24 @@ +# alacritty + +> Cross-platform, GPU-accelerated terminal emulator. +> More information: . + +- Open a new alacritty window: + +`alacritty` + +- Run in a specific directory: + +`alacritty --working-directory {{path/to/directory}}` + +- Run a command in a new alacritty window: + +`alacritty -e {{command}}` + +- Specify alternative configuration file (defaults to $XDG_CONFIG_HOME/alacritty/alacritty.yml): + +`alacritty --config-file {{path/to/config.yml}}` + +- Run with live config reload enabled (can also be enabled by default in alacritty.yml): + +`alacritty --live-config-reload --config-file {{path/to/config.yml}}`