♻️ refactor: rename --create-desktop-shortcut to --setup-desktop-shortcut

This commit is contained in:
2026-03-01 19:42:12 -03:00
parent d7246298b1
commit 0e2745acf1
3 changed files with 4 additions and 4 deletions
+2 -2
View File
@@ -40,7 +40,7 @@ struct Args {
/// Install the .desktop entry and icon for app launcher integration
#[arg(long)]
create_desktop_shortcut: bool,
setup_desktop_shortcut: bool,
}
fn main() -> Result<()> {
@@ -57,7 +57,7 @@ fn main() -> Result<()> {
}
// Handle standalone desktop integration setup
if args.create_desktop_shortcut {
if args.setup_desktop_shortcut {
return setup_desktop_integration_wizard();
}