Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion apps/window-to-tray/src/cli.rs
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,12 @@ pub fn main() -> Result<(), WttError> {
if let Some(shell) = args.generate_completion {
let stdout = stdout();
let mut stdout = stdout.lock();
clap_complete::generate(shell, &mut WindowToTray::command(), "wl-veil", &mut stdout);
clap_complete::generate(
shell,
&mut WindowToTray::command(),
"window-to-tray",
&mut stdout,
);
return Ok(());
}
let theme = Theme {
Expand Down
2 changes: 1 addition & 1 deletion apps/wl-format-filter/src/cli.rs
Original file line number Diff line number Diff line change
Expand Up @@ -292,7 +292,7 @@ pub fn main() -> Result<(), HfError> {
clap_complete::generate(
shell,
&mut WlFormatFilter::command(),
"wl-veil",
"wl-format-filter",
&mut stdout,
);
return Ok(());
Expand Down
2 changes: 1 addition & 1 deletion apps/wl-paper/src/cli.rs
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ pub fn main() -> Result<(), PaperError> {
if let Some(shell) = args.generate_completion {
let stdout = stdout();
let mut stdout = stdout.lock();
clap_complete::generate(shell, &mut WlPaper::command(), "wl-veil", &mut stdout);
clap_complete::generate(shell, &mut WlPaper::command(), "wl-paper", &mut stdout);
return Ok(());
}
let config = Config {
Expand Down