+
diff --git a/lang/en-US.json b/lang/en-US.json
index 580c23f38..2fee11acd 100644
--- a/lang/en-US.json
+++ b/lang/en-US.json
@@ -346,5 +346,6 @@
"interceptor": "Interceptor",
"profile": "Profile",
"are_you_sure_logout": "Are you sure you want to logout?",
- "telemetry": "Telemetry"
+ "telemetry": "Telemetry",
+ "shortcuts_indicator": "Shortcuts indicator"
}
diff --git a/newstore/settings.ts b/newstore/settings.ts
index 7fa279aba..36add6d75 100644
--- a/newstore/settings.ts
+++ b/newstore/settings.ts
@@ -42,6 +42,7 @@ export type SettingsType = {
THEME_COLOR: HoppAccentColor
BG_COLOR: HoppBgColor
TELEMETRY_ENABLED: boolean
+ SHORTCUTS_INDICATOR_ENABLED: boolean
}
export const defaultSettings: SettingsType = {
@@ -64,6 +65,7 @@ export const defaultSettings: SettingsType = {
THEME_COLOR: "green",
BG_COLOR: "system",
TELEMETRY_ENABLED: true,
+ SHORTCUTS_INDICATOR_ENABLED: false,
}
const validKeys = Object.keys(defaultSettings)
diff --git a/pages/settings.vue b/pages/settings.vue
index 2004357ed..f38c6254f 100644
--- a/pages/settings.vue
+++ b/pages/settings.vue
@@ -171,6 +171,17 @@
{{ TELEMETRY_ENABLED ? $t("enabled") : $t("disabled") }}
+
+
+ {{ $t("shortcuts_indicator") }}
+ {{
+ SHORTCUTS_INDICATOR_ENABLED ? $t("enabled") : $t("disabled")
+ }}
+
+