diff --git a/src/js/commandline-lists.js b/src/js/commandline-lists.js index f355cc659..554e851ba 100644 --- a/src/js/commandline-lists.js +++ b/src/js/commandline-lists.js @@ -2482,12 +2482,30 @@ export let defaultCommands = { icon: "fa-ad", subgroup: commandsEnableAds, }, + { + id: "changeTheme", + display: "Theme...", + icon: "fa-palette", + subgroup: themeCommands, + }, { id: "setCustomTheme", display: "Custom theme...", icon: "fa-palette", subgroup: commandsCustomTheme, }, + { + id: "changeRandomTheme", + display: "Random theme...", + icon: "fa-random", + subgroup: commandsRandomTheme, + }, + { + id: "randomizeTheme", + display: "Next random theme", + icon: "fa-random", + exec: () => ThemeController.randomizeTheme(), + }, { id: "changeDifficulty", display: "Difficulty...", @@ -2552,18 +2570,6 @@ export let defaultCommands = { UpdateConfig.setCustomBackground(input); }, }, - { - id: "changeTheme", - display: "Theme...", - icon: "fa-palette", - subgroup: themeCommands, - }, - { - id: "changeRandomTheme", - display: "Random theme...", - icon: "fa-random", - subgroup: commandsRandomTheme, - }, { id: "changeLanguage", display: "Language...", @@ -2656,12 +2662,6 @@ export let defaultCommands = { icon: "fa-arrows-alt-h", subgroup: commandsPageWidth, }, - { - id: "randomizeTheme", - display: "Next random theme", - icon: "fa-palette", - exec: () => ThemeController.randomizeTheme(), - }, { id: "viewTypingPage", display: "View Typing Page",