diff options
author | Christian Duerr <contact@christianduerr.com> | 2024-10-15 18:32:50 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-10-15 18:32:50 +0000 |
commit | 2a2db5b6fd23adea88906b8c2ee81512cd44cd53 (patch) | |
tree | 46c314a8cfb6a94e2693f5e3e5e79e02877875f0 /extra/completions/alacritty.bash | |
parent | 6ba69f8dd469e1a9aff0b48b3ae10ce4510ca1e3 (diff) | |
download | r-alacritty-2a2db5b6fd23adea88906b8c2ee81512cd44cd53.tar.gz r-alacritty-2a2db5b6fd23adea88906b8c2ee81512cd44cd53.tar.bz2 r-alacritty-2a2db5b6fd23adea88906b8c2ee81512cd44cd53.zip |
Add headless mode
This patch adds a daemon mode to Alacritty which allows starting the
Alacritty process without spawning an initial window.
While this does not provide any significant advantage over the existing
behavior of always spawning a window, it does integrate nicer with some
setups and is a pretty trivial addition.
Diffstat (limited to 'extra/completions/alacritty.bash')
-rw-r--r-- | extra/completions/alacritty.bash | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/extra/completions/alacritty.bash b/extra/completions/alacritty.bash index 2c10d47c..e2213b75 100644 --- a/extra/completions/alacritty.bash +++ b/extra/completions/alacritty.bash @@ -61,7 +61,7 @@ _alacritty() { case "${cmd}" in alacritty) - opts="-q -v -e -T -o -h -V --print-events --ref-test --embed --config-file --socket --working-directory --hold --command --title --class --option --help --version msg migrate help" + opts="-q -v -e -T -o -h -V --print-events --ref-test --embed --config-file --socket --daemon --working-directory --hold --command --title --class --option --help --version msg migrate help" if [[ ${cur} == -* || ${COMP_CWORD} -eq 1 ]] ; then COMPREPLY=( $(compgen -W "${opts}" -- "${cur}") ) return 0 |