diff options
author | Nathan Lilienthal <nathan@nixpulvis.com> | 2020-09-13 17:10:44 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-09-13 21:10:44 +0000 |
commit | c77ab137f15ee16144bbbd89df8eb95b30174744 (patch) | |
tree | 6000102da18c28c802f90277e27a80c32d10a29d | |
parent | 1bf40a8cc77d9082dfb76e028e0f66af88d79958 (diff) | |
download | alacritty-c77ab137f15ee16144bbbd89df8eb95b30174744.tar.gz alacritty-c77ab137f15ee16144bbbd89df8eb95b30174744.zip |
Improve example for the -o CLI flag
Co-authored-by: Christian Duerr <contact@christianduerr.com>
-rw-r--r-- | alacritty/src/cli.rs | 2 | ||||
-rw-r--r-- | extra/alacritty.man | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/alacritty/src/cli.rs b/alacritty/src/cli.rs index 418e3791..047c8d2e 100644 --- a/alacritty/src/cli.rs +++ b/alacritty/src/cli.rs @@ -182,7 +182,7 @@ impl Options { .short("o") .multiple(true) .takes_value(true) - .help("Override configuration file options [example: window.title=Alacritty]"), + .help("Override configuration file options [example: cursor.style=Beam]"), ) .get_matches(); diff --git a/extra/alacritty.man b/extra/alacritty.man index 8d89d2c5..535c161c 100644 --- a/extra/alacritty.man +++ b/extra/alacritty.man @@ -68,7 +68,7 @@ Defines the window dimensions. Falls back to size specified by window manager if Defines the X11 window ID (as a decimal integer) to embed Alacritty within .TP \fB\-o\fR, \fB\-\-option\fR <option>... -Override configuration file options [example: window.title=Alacritty] +Override configuration file options [example: cursor.style=Beam] .TP \fB\-\-position\fR <x-pos> <y-pos> Defines the window position. Falls back to position specified by window manager if unset [default: unset] |