diff options
author | Rudis Muiznieks <rmuiznieks@nextgxdx.com> | 2017-01-05 15:04:23 -0600 |
---|---|---|
committer | Rudis Muiznieks <rmuiznieks@nextgxdx.com> | 2017-01-06 09:18:23 -0600 |
commit | c0054d0fe291f88ac75545ab014d0b062fa5c180 (patch) | |
tree | 5f79b8f869d7abaa42ccb5f21bbc8530af6f5b46 /src/cli.rs | |
parent | 3c57c0388727884f9ed4e6066f1b58408ad3fed1 (diff) | |
download | alacritty-c0054d0fe291f88ac75545ab014d0b062fa5c180.tar.gz alacritty-c0054d0fe291f88ac75545ab014d0b062fa5c180.zip |
Added --title argument to set window title
Diffstat (limited to 'src/cli.rs')
-rw-r--r-- | src/cli.rs | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -19,6 +19,7 @@ pub struct Options { pub ref_test: bool, pub columns: Column, pub lines: Line, + pub title: String } impl Default for Options { @@ -27,6 +28,7 @@ impl Default for Options { ref_test: false, columns: Column(80), lines: Line(24), + title: "Alacritty".to_owned() } } } @@ -48,6 +50,9 @@ impl Options { args_iter.next() .map(|h| h.parse().map(|h| options.lines = Line(h))); }, + "-t" | "--title" => { + args_iter.next().map(|t| options.title = t); + }, // ignore unexpected _ => (), } |