diff options
| author | Ja.KooLit <85185940+JaKooLit@users.noreply.github.com> | 2025-07-15 23:46:48 +0900 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-07-15 23:46:48 +0900 |
| commit | 71f1bc6920920f2a9337f18ceba6ebc12b276a6f (patch) | |
| tree | 34431efa13460f9e716ed162355fd08c535aedc0 /config/quickshell/modules/common/ConfigOptions.qml | |
| parent | 7a3bd4f9fe48aad02ef8b13d3677b3bd8358252c (diff) | |
| parent | 3aadb2106a26988346f34afafe8393b0ba6bdf79 (diff) | |
Merge branch 'development' into fix-slow-brightness
Diffstat (limited to 'config/quickshell/modules/common/ConfigOptions.qml')
| -rw-r--r-- | config/quickshell/modules/common/ConfigOptions.qml | 43 |
1 files changed, 43 insertions, 0 deletions
diff --git a/config/quickshell/modules/common/ConfigOptions.qml b/config/quickshell/modules/common/ConfigOptions.qml new file mode 100644 index 00000000..25f0de05 --- /dev/null +++ b/config/quickshell/modules/common/ConfigOptions.qml @@ -0,0 +1,43 @@ +import QtQuick +import Quickshell +pragma Singleton +pragma ComponentBehavior: Bound + +Singleton { + + property QtObject appearance: QtObject { + property int fakeScreenRounding: 1 // 0: None | 1: Always | 2: When not fullscreen + } + + property QtObject overview: QtObject { + property real scale: 0.15 // Relative to screen size + property real numOfRows: 2 + property real numOfCols: 5 + property bool showXwaylandIndicator: true + property real windowPadding: 6 + property real position: 1 // 0: top | 1: middle | 2: bottom + property real workspaceNumberSize: 120 // Set 0, dynamic calculation based on monitor size + } + + property QtObject resources: QtObject { + property int updateInterval: 3000 + } + + property QtObject hacks: QtObject { + property int arbitraryRaceConditionDelay: 20 // milliseconds + } + + property QtObject search: QtObject { + property bool searchEnabled: false + property int nonAppResultDelay: 30 // This prevents lagging when typing + property QtObject prefix: QtObject { + property string action: "/" + property string clipboard: ";" + property string emojis: ":" + } + } + + property QtObject bar: QtObject { + property bool bottom: false // Instead of top + } +} |
