mirror of
https://github.com/AvengeMedia/DankMaterialShell.git
synced 2026-04-09 07:12:07 -04:00
feat: add osd toggles to search index (#1652)
* feat: add osd toggles to search index this commit also regenerates the search index * add newline at end of translations file * ran prek to fix the file :)
This commit is contained in:
@@ -26,6 +26,7 @@ Item {
|
|||||||
settingKey: "osd"
|
settingKey: "osd"
|
||||||
|
|
||||||
SettingsDropdownRow {
|
SettingsDropdownRow {
|
||||||
|
settingKey: "osdPosition"
|
||||||
text: I18n.tr("OSD Position")
|
text: I18n.tr("OSD Position")
|
||||||
description: I18n.tr("Choose where on-screen displays appear on screen")
|
description: I18n.tr("Choose where on-screen displays appear on screen")
|
||||||
currentValue: {
|
currentValue: {
|
||||||
@@ -73,6 +74,7 @@ Item {
|
|||||||
}
|
}
|
||||||
|
|
||||||
SettingsToggleRow {
|
SettingsToggleRow {
|
||||||
|
settingKey: "osdAlwaysShowValue"
|
||||||
text: I18n.tr("Always Show Percentage")
|
text: I18n.tr("Always Show Percentage")
|
||||||
description: I18n.tr("Display volume and brightness percentage values in OSD popups")
|
description: I18n.tr("Display volume and brightness percentage values in OSD popups")
|
||||||
checked: SettingsData.osdAlwaysShowValue
|
checked: SettingsData.osdAlwaysShowValue
|
||||||
@@ -87,6 +89,7 @@ Item {
|
|||||||
}
|
}
|
||||||
|
|
||||||
SettingsToggleRow {
|
SettingsToggleRow {
|
||||||
|
settingKey: "osdVolumeEnabled"
|
||||||
text: I18n.tr("Volume")
|
text: I18n.tr("Volume")
|
||||||
description: I18n.tr("Show on-screen display when volume changes")
|
description: I18n.tr("Show on-screen display when volume changes")
|
||||||
checked: SettingsData.osdVolumeEnabled
|
checked: SettingsData.osdVolumeEnabled
|
||||||
@@ -94,6 +97,7 @@ Item {
|
|||||||
}
|
}
|
||||||
|
|
||||||
SettingsToggleRow {
|
SettingsToggleRow {
|
||||||
|
settingKey: "osdMediaVolumeEnabled"
|
||||||
text: I18n.tr("Media Volume")
|
text: I18n.tr("Media Volume")
|
||||||
description: I18n.tr("Show on-screen display when media player volume changes")
|
description: I18n.tr("Show on-screen display when media player volume changes")
|
||||||
checked: SettingsData.osdMediaVolumeEnabled
|
checked: SettingsData.osdMediaVolumeEnabled
|
||||||
@@ -101,13 +105,15 @@ Item {
|
|||||||
}
|
}
|
||||||
|
|
||||||
SettingsToggleRow {
|
SettingsToggleRow {
|
||||||
|
settingKey: "osdMediaPlaybackEnabled"
|
||||||
text: I18n.tr("Media Playback")
|
text: I18n.tr("Media Playback")
|
||||||
description: I18n.tr("Show on-screen display when media playback status changes")
|
description: I18n.tr("Show on-screen display when media player status changes")
|
||||||
checked: SettingsData.osdMediaPlaybackEnabled
|
checked: SettingsData.osdMediaPlaybackEnabled
|
||||||
onToggled: checked => SettingsData.set("osdMediaPlaybackEnabled", checked)
|
onToggled: checked => SettingsData.set("osdMediaPlaybackEnabled", checked)
|
||||||
}
|
}
|
||||||
|
|
||||||
SettingsToggleRow {
|
SettingsToggleRow {
|
||||||
|
settingKey: "osdBrightnessEnabled"
|
||||||
text: I18n.tr("Brightness")
|
text: I18n.tr("Brightness")
|
||||||
description: I18n.tr("Show on-screen display when brightness changes")
|
description: I18n.tr("Show on-screen display when brightness changes")
|
||||||
checked: SettingsData.osdBrightnessEnabled
|
checked: SettingsData.osdBrightnessEnabled
|
||||||
@@ -115,6 +121,7 @@ Item {
|
|||||||
}
|
}
|
||||||
|
|
||||||
SettingsToggleRow {
|
SettingsToggleRow {
|
||||||
|
settingKey: "osdIdleInhibitorEnabled"
|
||||||
text: I18n.tr("Idle Inhibitor")
|
text: I18n.tr("Idle Inhibitor")
|
||||||
description: I18n.tr("Show on-screen display when idle inhibitor state changes")
|
description: I18n.tr("Show on-screen display when idle inhibitor state changes")
|
||||||
checked: SettingsData.osdIdleInhibitorEnabled
|
checked: SettingsData.osdIdleInhibitorEnabled
|
||||||
@@ -122,6 +129,7 @@ Item {
|
|||||||
}
|
}
|
||||||
|
|
||||||
SettingsToggleRow {
|
SettingsToggleRow {
|
||||||
|
settingKey: "osdMicMuteEnabled"
|
||||||
text: I18n.tr("Microphone Mute")
|
text: I18n.tr("Microphone Mute")
|
||||||
description: I18n.tr("Show on-screen display when microphone is muted/unmuted")
|
description: I18n.tr("Show on-screen display when microphone is muted/unmuted")
|
||||||
checked: SettingsData.osdMicMuteEnabled
|
checked: SettingsData.osdMicMuteEnabled
|
||||||
@@ -129,6 +137,7 @@ Item {
|
|||||||
}
|
}
|
||||||
|
|
||||||
SettingsToggleRow {
|
SettingsToggleRow {
|
||||||
|
settingKey: "osdCapsLockEnabled"
|
||||||
text: I18n.tr("Caps Lock")
|
text: I18n.tr("Caps Lock")
|
||||||
description: I18n.tr("Show on-screen display when caps lock state changes")
|
description: I18n.tr("Show on-screen display when caps lock state changes")
|
||||||
checked: SettingsData.osdCapsLockEnabled
|
checked: SettingsData.osdCapsLockEnabled
|
||||||
@@ -136,6 +145,7 @@ Item {
|
|||||||
}
|
}
|
||||||
|
|
||||||
SettingsToggleRow {
|
SettingsToggleRow {
|
||||||
|
settingKey: "osdPowerProfileEnabled"
|
||||||
text: I18n.tr("Power Profile")
|
text: I18n.tr("Power Profile")
|
||||||
description: I18n.tr("Show on-screen display when power profile changes")
|
description: I18n.tr("Show on-screen display when power profile changes")
|
||||||
checked: SettingsData.osdPowerProfileEnabled
|
checked: SettingsData.osdPowerProfileEnabled
|
||||||
@@ -143,6 +153,7 @@ Item {
|
|||||||
}
|
}
|
||||||
|
|
||||||
SettingsToggleRow {
|
SettingsToggleRow {
|
||||||
|
settingKey: "osdAudioOutputEnabled"
|
||||||
text: I18n.tr("Audio Output Switch")
|
text: I18n.tr("Audio Output Switch")
|
||||||
description: I18n.tr("Show on-screen display when cycling audio output devices")
|
description: I18n.tr("Show on-screen display when cycling audio output devices")
|
||||||
checked: SettingsData.osdAudioOutputEnabled
|
checked: SettingsData.osdAudioOutputEnabled
|
||||||
|
|||||||
@@ -751,6 +751,21 @@
|
|||||||
],
|
],
|
||||||
"icon": "vertical_align_center"
|
"icon": "vertical_align_center"
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"section": "barShadow",
|
||||||
|
"label": "Shadow",
|
||||||
|
"tabIndex": 3,
|
||||||
|
"category": "Dank Bar",
|
||||||
|
"keywords": [
|
||||||
|
"bar",
|
||||||
|
"dank",
|
||||||
|
"panel",
|
||||||
|
"shadow",
|
||||||
|
"statusbar",
|
||||||
|
"topbar"
|
||||||
|
],
|
||||||
|
"icon": "layers"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"section": "barSpacing",
|
"section": "barSpacing",
|
||||||
"label": "Spacing",
|
"label": "Spacing",
|
||||||
@@ -3815,31 +3830,24 @@
|
|||||||
"description": "If the field is hidden, it will appear as soon as a key is pressed."
|
"description": "If the field is hidden, it will appear as soon as a key is pressed."
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"section": "lockScreenNotificationMode",
|
"section": "lockAtStartup",
|
||||||
"label": "Notification Display",
|
"label": "Lock at startup",
|
||||||
"tabIndex": 11,
|
"tabIndex": 11,
|
||||||
"category": "Lock Screen",
|
"category": "Lock Screen",
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"alert",
|
"automatic",
|
||||||
"control",
|
"automatically",
|
||||||
"display",
|
"boot",
|
||||||
"information",
|
|
||||||
"lock",
|
"lock",
|
||||||
"lockscreen",
|
|
||||||
"login",
|
"login",
|
||||||
"monitor",
|
|
||||||
"notif",
|
|
||||||
"notification",
|
|
||||||
"notifications",
|
|
||||||
"output",
|
|
||||||
"password",
|
"password",
|
||||||
"privacy",
|
|
||||||
"screen",
|
"screen",
|
||||||
"security",
|
"security",
|
||||||
"shown",
|
"start",
|
||||||
"what"
|
"starts",
|
||||||
|
"startup"
|
||||||
],
|
],
|
||||||
"description": "Control what notification information is shown on the lock screen"
|
"description": "Automatically lock the screen when DMS starts"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"section": "_tab_11",
|
"section": "_tab_11",
|
||||||
@@ -4075,6 +4083,7 @@
|
|||||||
"motion",
|
"motion",
|
||||||
"popout",
|
"popout",
|
||||||
"speed",
|
"speed",
|
||||||
|
"sync",
|
||||||
"text",
|
"text",
|
||||||
"transition",
|
"transition",
|
||||||
"typography"
|
"typography"
|
||||||
@@ -4097,6 +4106,7 @@
|
|||||||
"modal",
|
"modal",
|
||||||
"motion",
|
"motion",
|
||||||
"speed",
|
"speed",
|
||||||
|
"sync",
|
||||||
"text",
|
"text",
|
||||||
"transition",
|
"transition",
|
||||||
"typography"
|
"typography"
|
||||||
@@ -4104,6 +4114,29 @@
|
|||||||
"icon": "web_asset",
|
"icon": "web_asset",
|
||||||
"description": "%1 custom animation duration"
|
"description": "%1 custom animation duration"
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"section": "customAnimationDuration",
|
||||||
|
"label": "Animation Duration",
|
||||||
|
"tabIndex": 14,
|
||||||
|
"category": "Typography & Motion",
|
||||||
|
"keywords": [
|
||||||
|
"animate",
|
||||||
|
"animation",
|
||||||
|
"animations",
|
||||||
|
"custom",
|
||||||
|
"duration",
|
||||||
|
"durations",
|
||||||
|
"fonts",
|
||||||
|
"globally",
|
||||||
|
"motion",
|
||||||
|
"scale",
|
||||||
|
"speed",
|
||||||
|
"text",
|
||||||
|
"transition",
|
||||||
|
"typography"
|
||||||
|
],
|
||||||
|
"description": "Globally scale all animation durations"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"section": "animationSpeed",
|
"section": "animationSpeed",
|
||||||
"label": "Animation Speed",
|
"label": "Animation Speed",
|
||||||
@@ -4114,43 +4147,18 @@
|
|||||||
"animation",
|
"animation",
|
||||||
"animations",
|
"animations",
|
||||||
"duration",
|
"duration",
|
||||||
"fine",
|
"durations",
|
||||||
"fonts",
|
"fonts",
|
||||||
"milliseconds",
|
"globally",
|
||||||
"motion",
|
"motion",
|
||||||
|
"scale",
|
||||||
"speed",
|
"speed",
|
||||||
"text",
|
"text",
|
||||||
"timing",
|
|
||||||
"transition",
|
"transition",
|
||||||
"tune",
|
|
||||||
"typography"
|
"typography"
|
||||||
],
|
],
|
||||||
"icon": "animation",
|
"icon": "animation",
|
||||||
"description": "Fine-tune animation timing in milliseconds"
|
"description": "Globally scale all animation durations"
|
||||||
},
|
|
||||||
{
|
|
||||||
"section": "customAnimationDuration",
|
|
||||||
"label": "Custom Duration",
|
|
||||||
"tabIndex": 14,
|
|
||||||
"category": "Typography & Motion",
|
|
||||||
"keywords": [
|
|
||||||
"animate",
|
|
||||||
"animation",
|
|
||||||
"animations",
|
|
||||||
"custom",
|
|
||||||
"duration",
|
|
||||||
"fine",
|
|
||||||
"fonts",
|
|
||||||
"milliseconds",
|
|
||||||
"motion",
|
|
||||||
"speed",
|
|
||||||
"text",
|
|
||||||
"timing",
|
|
||||||
"transition",
|
|
||||||
"tune",
|
|
||||||
"typography"
|
|
||||||
],
|
|
||||||
"description": "Fine-tune animation timing in milliseconds"
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"section": "popoutCustomAnimationDuration",
|
"section": "popoutCustomAnimationDuration",
|
||||||
@@ -4281,6 +4289,59 @@
|
|||||||
],
|
],
|
||||||
"description": "Select the font family for UI text"
|
"description": "Select the font family for UI text"
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"section": "enableRippleEffects",
|
||||||
|
"label": "Ripple Effects",
|
||||||
|
"tabIndex": 14,
|
||||||
|
"category": "Typography & Motion",
|
||||||
|
"keywords": [
|
||||||
|
"animate",
|
||||||
|
"animation",
|
||||||
|
"animations",
|
||||||
|
"design",
|
||||||
|
"effect",
|
||||||
|
"effects",
|
||||||
|
"elements",
|
||||||
|
"feedback",
|
||||||
|
"fonts",
|
||||||
|
"interactive",
|
||||||
|
"material",
|
||||||
|
"motion",
|
||||||
|
"ripple",
|
||||||
|
"show",
|
||||||
|
"text",
|
||||||
|
"transition",
|
||||||
|
"typography"
|
||||||
|
],
|
||||||
|
"icon": "radio_button_unchecked",
|
||||||
|
"description": "Show Material Design ripple animations on interactive elements"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"section": "syncComponentAnimationSpeeds",
|
||||||
|
"label": "Sync Popouts & Modals",
|
||||||
|
"tabIndex": 14,
|
||||||
|
"category": "Typography & Motion",
|
||||||
|
"keywords": [
|
||||||
|
"animate",
|
||||||
|
"animation",
|
||||||
|
"animations",
|
||||||
|
"customize",
|
||||||
|
"follow",
|
||||||
|
"fonts",
|
||||||
|
"global",
|
||||||
|
"modal",
|
||||||
|
"modals",
|
||||||
|
"motion",
|
||||||
|
"popout",
|
||||||
|
"popouts",
|
||||||
|
"speed",
|
||||||
|
"sync",
|
||||||
|
"text",
|
||||||
|
"transition",
|
||||||
|
"typography"
|
||||||
|
],
|
||||||
|
"description": "Popouts and Modals follow global Animation Speed (disable to customize independently)"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"section": "typography",
|
"section": "typography",
|
||||||
"label": "Typography",
|
"label": "Typography",
|
||||||
@@ -4834,6 +4895,35 @@
|
|||||||
],
|
],
|
||||||
"description": "Timeout for normal priority notifications"
|
"description": "Timeout for normal priority notifications"
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"section": "lockScreenNotificationMode",
|
||||||
|
"label": "Notification Display",
|
||||||
|
"tabIndex": 17,
|
||||||
|
"category": "Notifications",
|
||||||
|
"keywords": [
|
||||||
|
"alert",
|
||||||
|
"alerts",
|
||||||
|
"control",
|
||||||
|
"display",
|
||||||
|
"information",
|
||||||
|
"lock",
|
||||||
|
"lockscreen",
|
||||||
|
"login",
|
||||||
|
"messages",
|
||||||
|
"monitor",
|
||||||
|
"notif",
|
||||||
|
"notification",
|
||||||
|
"notifications",
|
||||||
|
"output",
|
||||||
|
"privacy",
|
||||||
|
"screen",
|
||||||
|
"security",
|
||||||
|
"shown",
|
||||||
|
"toast",
|
||||||
|
"what"
|
||||||
|
],
|
||||||
|
"description": "Control what notification information is shown on the lock screen"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"section": "notificationOverlayEnabled",
|
"section": "notificationOverlayEnabled",
|
||||||
"label": "Notification Overlay",
|
"label": "Notification Overlay",
|
||||||
@@ -4948,6 +5038,230 @@
|
|||||||
],
|
],
|
||||||
"description": "Choose where notification popups appear on screen"
|
"description": "Choose where notification popups appear on screen"
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"section": "osdAlwaysShowValue",
|
||||||
|
"label": "Always Show Percentage",
|
||||||
|
"tabIndex": 18,
|
||||||
|
"category": "On-screen Displays",
|
||||||
|
"keywords": [
|
||||||
|
"always",
|
||||||
|
"audio",
|
||||||
|
"backlight",
|
||||||
|
"bright",
|
||||||
|
"brightness",
|
||||||
|
"dim",
|
||||||
|
"display",
|
||||||
|
"displays",
|
||||||
|
"indicator",
|
||||||
|
"loudness",
|
||||||
|
"monitor",
|
||||||
|
"osd",
|
||||||
|
"output",
|
||||||
|
"percentage",
|
||||||
|
"popup",
|
||||||
|
"popups",
|
||||||
|
"screen",
|
||||||
|
"show",
|
||||||
|
"sound",
|
||||||
|
"speaker",
|
||||||
|
"values",
|
||||||
|
"volume"
|
||||||
|
],
|
||||||
|
"description": "Display volume and brightness percentage values in OSD popups"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"section": "osdAudioOutputEnabled",
|
||||||
|
"label": "Audio Output Switch",
|
||||||
|
"tabIndex": 18,
|
||||||
|
"category": "On-screen Displays",
|
||||||
|
"keywords": [
|
||||||
|
"audio",
|
||||||
|
"cycling",
|
||||||
|
"devices",
|
||||||
|
"display",
|
||||||
|
"displays",
|
||||||
|
"indicator",
|
||||||
|
"monitor",
|
||||||
|
"osd",
|
||||||
|
"output",
|
||||||
|
"popup",
|
||||||
|
"screen",
|
||||||
|
"show",
|
||||||
|
"switch"
|
||||||
|
],
|
||||||
|
"description": "Show on-screen display when cycling audio output devices"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"section": "osdBrightnessEnabled",
|
||||||
|
"label": "Brightness",
|
||||||
|
"tabIndex": 18,
|
||||||
|
"category": "On-screen Displays",
|
||||||
|
"keywords": [
|
||||||
|
"backlight",
|
||||||
|
"bright",
|
||||||
|
"brightness",
|
||||||
|
"changes",
|
||||||
|
"dim",
|
||||||
|
"display",
|
||||||
|
"displays",
|
||||||
|
"indicator",
|
||||||
|
"monitor",
|
||||||
|
"osd",
|
||||||
|
"output",
|
||||||
|
"popup",
|
||||||
|
"screen",
|
||||||
|
"show"
|
||||||
|
],
|
||||||
|
"description": "Show on-screen display when brightness changes"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"section": "osdCapsLockEnabled",
|
||||||
|
"label": "Caps Lock",
|
||||||
|
"tabIndex": 18,
|
||||||
|
"category": "On-screen Displays",
|
||||||
|
"keywords": [
|
||||||
|
"caps",
|
||||||
|
"changes",
|
||||||
|
"display",
|
||||||
|
"displays",
|
||||||
|
"indicator",
|
||||||
|
"lock",
|
||||||
|
"monitor",
|
||||||
|
"osd",
|
||||||
|
"output",
|
||||||
|
"popup",
|
||||||
|
"screen",
|
||||||
|
"show",
|
||||||
|
"state"
|
||||||
|
],
|
||||||
|
"description": "Show on-screen display when caps lock state changes"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"section": "osdIdleInhibitorEnabled",
|
||||||
|
"label": "Idle Inhibitor",
|
||||||
|
"tabIndex": 18,
|
||||||
|
"category": "On-screen Displays",
|
||||||
|
"keywords": [
|
||||||
|
"afk",
|
||||||
|
"changes",
|
||||||
|
"display",
|
||||||
|
"displays",
|
||||||
|
"idle",
|
||||||
|
"inactive",
|
||||||
|
"indicator",
|
||||||
|
"inhibitor",
|
||||||
|
"monitor",
|
||||||
|
"osd",
|
||||||
|
"output",
|
||||||
|
"popup",
|
||||||
|
"screen",
|
||||||
|
"screensaver",
|
||||||
|
"show",
|
||||||
|
"state",
|
||||||
|
"timeout"
|
||||||
|
],
|
||||||
|
"description": "Show on-screen display when idle inhibitor state changes"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"section": "osdMediaPlaybackEnabled",
|
||||||
|
"label": "Media Playback",
|
||||||
|
"tabIndex": 18,
|
||||||
|
"category": "On-screen Displays",
|
||||||
|
"keywords": [
|
||||||
|
"audio",
|
||||||
|
"changes",
|
||||||
|
"display",
|
||||||
|
"displays",
|
||||||
|
"indicator",
|
||||||
|
"media",
|
||||||
|
"monitor",
|
||||||
|
"mpris",
|
||||||
|
"music",
|
||||||
|
"osd",
|
||||||
|
"output",
|
||||||
|
"playback",
|
||||||
|
"player",
|
||||||
|
"popup",
|
||||||
|
"screen",
|
||||||
|
"show",
|
||||||
|
"status"
|
||||||
|
],
|
||||||
|
"description": "Show on-screen display when media player status changes"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"section": "osdMediaVolumeEnabled",
|
||||||
|
"label": "Media Volume",
|
||||||
|
"tabIndex": 18,
|
||||||
|
"category": "On-screen Displays",
|
||||||
|
"keywords": [
|
||||||
|
"audio",
|
||||||
|
"changes",
|
||||||
|
"display",
|
||||||
|
"displays",
|
||||||
|
"indicator",
|
||||||
|
"loudness",
|
||||||
|
"media",
|
||||||
|
"monitor",
|
||||||
|
"mpris",
|
||||||
|
"music",
|
||||||
|
"osd",
|
||||||
|
"output",
|
||||||
|
"playback",
|
||||||
|
"player",
|
||||||
|
"popup",
|
||||||
|
"screen",
|
||||||
|
"show",
|
||||||
|
"sound",
|
||||||
|
"speaker",
|
||||||
|
"volume"
|
||||||
|
],
|
||||||
|
"description": "Show on-screen display when media player volume changes"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"section": "osdMicMuteEnabled",
|
||||||
|
"label": "Microphone Mute",
|
||||||
|
"tabIndex": 18,
|
||||||
|
"category": "On-screen Displays",
|
||||||
|
"keywords": [
|
||||||
|
"display",
|
||||||
|
"displays",
|
||||||
|
"indicator",
|
||||||
|
"microphone",
|
||||||
|
"monitor",
|
||||||
|
"mute",
|
||||||
|
"muted",
|
||||||
|
"osd",
|
||||||
|
"output",
|
||||||
|
"popup",
|
||||||
|
"screen",
|
||||||
|
"show",
|
||||||
|
"unmuted"
|
||||||
|
],
|
||||||
|
"description": "Show on-screen display when microphone is muted/unmuted"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"section": "osdPosition",
|
||||||
|
"label": "OSD Position",
|
||||||
|
"tabIndex": 18,
|
||||||
|
"category": "On-screen Displays",
|
||||||
|
"keywords": [
|
||||||
|
"appear",
|
||||||
|
"choose",
|
||||||
|
"displays",
|
||||||
|
"indicator",
|
||||||
|
"monitor",
|
||||||
|
"monitors",
|
||||||
|
"osd",
|
||||||
|
"output",
|
||||||
|
"outputs",
|
||||||
|
"popup",
|
||||||
|
"position",
|
||||||
|
"screen",
|
||||||
|
"screens",
|
||||||
|
"where"
|
||||||
|
],
|
||||||
|
"description": "Choose where on-screen displays appear on screen"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"section": "_tab_18",
|
"section": "_tab_18",
|
||||||
"label": "On-screen Displays",
|
"label": "On-screen Displays",
|
||||||
@@ -4990,6 +5304,57 @@
|
|||||||
"icon": "tune",
|
"icon": "tune",
|
||||||
"description": "Choose where on-screen displays appear on screen"
|
"description": "Choose where on-screen displays appear on screen"
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"section": "osdPowerProfileEnabled",
|
||||||
|
"label": "Power Profile",
|
||||||
|
"tabIndex": 18,
|
||||||
|
"category": "On-screen Displays",
|
||||||
|
"keywords": [
|
||||||
|
"changes",
|
||||||
|
"display",
|
||||||
|
"displays",
|
||||||
|
"hibernate",
|
||||||
|
"indicator",
|
||||||
|
"monitor",
|
||||||
|
"osd",
|
||||||
|
"output",
|
||||||
|
"popup",
|
||||||
|
"power",
|
||||||
|
"profile",
|
||||||
|
"reboot",
|
||||||
|
"restart",
|
||||||
|
"screen",
|
||||||
|
"show",
|
||||||
|
"shutdown",
|
||||||
|
"sleep",
|
||||||
|
"suspend"
|
||||||
|
],
|
||||||
|
"description": "Show on-screen display when power profile changes"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"section": "osdVolumeEnabled",
|
||||||
|
"label": "Volume",
|
||||||
|
"tabIndex": 18,
|
||||||
|
"category": "On-screen Displays",
|
||||||
|
"keywords": [
|
||||||
|
"audio",
|
||||||
|
"changes",
|
||||||
|
"display",
|
||||||
|
"displays",
|
||||||
|
"indicator",
|
||||||
|
"loudness",
|
||||||
|
"monitor",
|
||||||
|
"osd",
|
||||||
|
"output",
|
||||||
|
"popup",
|
||||||
|
"screen",
|
||||||
|
"show",
|
||||||
|
"sound",
|
||||||
|
"speaker",
|
||||||
|
"volume"
|
||||||
|
],
|
||||||
|
"description": "Show on-screen display when volume changes"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"section": "appIdSubstitutions",
|
"section": "appIdSubstitutions",
|
||||||
"label": "App ID Substitutions",
|
"label": "App ID Substitutions",
|
||||||
|
|||||||
Reference in New Issue
Block a user