@@ -420,7 +420,7 @@ impl CommandDef {
420420 commands. retain ( |cmd| !cmd. menubar . is_empty ( ) ) ;
421421
422422 // Prefer to put the menus in this order
423- let mut order: Vec < & ' static str > = vec ! [ "WezTerm " , "Shell" , "Edit" , "View" , "Window" ] ;
423+ let mut order: Vec < & ' static str > = vec ! [ "CX Terminal " , "Shell" , "Edit" , "View" , "Window" ] ;
424424 // Add any other menus on the end
425425 for cmd in & commands {
426426 if !order. contains ( & cmd. menubar [ 0 ] ) {
@@ -440,11 +440,11 @@ impl CommandDef {
440440 // macOS will insert stuff at the top and bottom, so we add
441441 // a separator to tidy things up a bit
442442 menu. add_item ( & MenuItem :: new_separator ( ) ) ;
443- } else if cmd. menubar [ 0 ] == "WezTerm " {
443+ } else if cmd. menubar [ 0 ] == "CX Terminal " {
444444 menu. assign_as_app_menu ( ) ;
445445
446446 let about_item = MenuItem :: new_with (
447- & format ! ( "WezTerm {}" , config:: wezterm_version( ) ) ,
447+ & format ! ( "CX Terminal {}" , config:: wezterm_version( ) ) ,
448448 Some ( wezterm_perform_key_assignment_sel) ,
449449 "" ,
450450 ) ;
@@ -745,7 +745,7 @@ pub fn derive_command_from_key_assignment(action: &KeyAssignment) -> Option<Comm
745745 . into ( ) ,
746746 keys : vec ! [ ( Modifiers :: SUPER , "h" . into( ) ) ] ,
747747 args : & [ ] ,
748- menubar : & [ "WezTerm " ] ,
748+ menubar : & [ "CX Terminal " ] ,
749749 icon : None ,
750750 } ,
751751 SpawnWindow => CommandDef {
@@ -1293,15 +1293,15 @@ pub fn derive_command_from_key_assignment(action: &KeyAssignment) -> Option<Comm
12931293 doc : "Reloads the configuration file" . into ( ) ,
12941294 keys : vec ! [ ( Modifiers :: SUPER , "r" . into( ) ) ] ,
12951295 args : & [ ] ,
1296- menubar : & [ "WezTerm " ] ,
1296+ menubar : & [ "CX Terminal " ] ,
12971297 icon : Some ( "md_reload" ) ,
12981298 } ,
12991299 QuitApplication => CommandDef {
1300- brief : "Quit WezTerm " . into ( ) ,
1301- doc : "Quits WezTerm " . into ( ) ,
1300+ brief : "Quit CX Terminal " . into ( ) ,
1301+ doc : "Quits CX Terminal " . into ( ) ,
13021302 keys : vec ! [ ( Modifiers :: SUPER , "q" . into( ) ) ] ,
13031303 args : & [ ] ,
1304- menubar : & [ "WezTerm " ] ,
1304+ menubar : & [ "CX Terminal " ] ,
13051305 icon : Some ( "oct_stop" ) ,
13061306 } ,
13071307 MoveTabRelative ( -1 ) => CommandDef {
0 commit comments