diff options
Diffstat (limited to 'raveos-hyprland-theme/theme-data/DankMaterialShell/quickshell/PLUGINS/ExampleDesktopClock/DesktopClockSettings.qml')
| -rw-r--r-- | raveos-hyprland-theme/theme-data/DankMaterialShell/quickshell/PLUGINS/ExampleDesktopClock/DesktopClockSettings.qml | 45 |
1 files changed, 0 insertions, 45 deletions
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 deleted file mode 100644 index 94063b7..0000000 --- a/raveos-hyprland-theme/theme-data/DankMaterialShell/quickshell/PLUGINS/ExampleDesktopClock/DesktopClockSettings.qml +++ /dev/null @@ -1,45 +0,0 @@ -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: "%" - } -} |