From 70ca3fef77ee8bdc6e3ac28589a6fa08c024cc69 Mon Sep 17 00:00:00 2001 From: AlexanderCurl Date: Sat, 18 Apr 2026 17:46:06 +0100 Subject: Replaced file structures for themes in the correct format --- .../ExampleDesktopClock/DesktopClockSettings.qml | 45 ++++++++++++++++++++++ 1 file changed, 45 insertions(+) create mode 100644 raveos-hyprland-theme/theme-data/DankMaterialShell/quickshell/PLUGINS/ExampleDesktopClock/DesktopClockSettings.qml (limited to 'raveos-hyprland-theme/theme-data/DankMaterialShell/quickshell/PLUGINS/ExampleDesktopClock/DesktopClockSettings.qml') diff --git a/raveos-hyprland-theme/theme-data/DankMaterialShell/quickshell/PLUGINS/ExampleDesktopClock/DesktopClockSettings.qml b/raveos-hyprland-theme/theme-data/DankMaterialShell/quickshell/PLUGINS/ExampleDesktopClock/DesktopClockSettings.qml new file mode 100644 index 0000000..94063b7 --- /dev/null +++ b/raveos-hyprland-theme/theme-data/DankMaterialShell/quickshell/PLUGINS/ExampleDesktopClock/DesktopClockSettings.qml @@ -0,0 +1,45 @@ +import QtQuick +import qs.Common +import qs.Modules.Plugins + +PluginSettings { + id: root + pluginId: "exampleDesktopClock" + + SelectionSetting { + settingKey: "clockStyle" + label: I18n.tr("Clock Style") + options: [ + { + label: I18n.tr("Analog"), + value: "analog" + }, + { + label: I18n.tr("Digital"), + value: "digital" + } + ] + defaultValue: "analog" + } + + ToggleSetting { + settingKey: "showSeconds" + label: I18n.tr("Show Seconds") + defaultValue: true + } + + ToggleSetting { + settingKey: "showDate" + label: I18n.tr("Show Date") + defaultValue: true + } + + SliderSetting { + settingKey: "backgroundOpacity" + label: I18n.tr("Background Opacity") + defaultValue: 50 + minimum: 0 + maximum: 100 + unit: "%" + } +} -- cgit v1.3