updated configuration and launcher, added animations for modules

This commit is contained in:
SomeElse
2026-04-27 07:31:17 +00:00
parent f548be0bfe
commit 7069679ab4
13 changed files with 711 additions and 14 deletions

View File

@@ -6,7 +6,7 @@ import "themes"
QtObject {
id: root
readonly property var theme: Colorful
readonly property var theme: Goldencity
// ────────────────────────────────────────────────────────────────────────
// Widgets
@@ -19,8 +19,8 @@ QtObject {
// ── Position & Dimensions ─────────────────────────────────────────────────
property string barPosition: "bottom"
property int barHeight: 37
property int margin: 20
property int barHeight: 35
property int margin: 15
property int radius: 26
// ── Module Lists ──────────────────────────────────────────────────────────
@@ -54,7 +54,7 @@ QtObject {
// ── Volume Module ─────────────────────────────────────────────────────────
property int volumeIconSize: 20
property int volumeSliderHeight: 4
property int volumeSliderHeight: 2
property int volumeHandleSize: 20
property int volumePopupWidth: 280
property int volumeOutputMax: 100
@@ -63,7 +63,7 @@ QtObject {
// ────────────────────────────────────────────────────────────────────────
// FRAME
// ────────────────────────────────────────────────────────────────────────
property int frameBorderWidth: 1
property int frameBorderWidth: 2
// ────────────────────────────────────────────────────────────────────────
// NOTIFICATIONS
@@ -84,4 +84,6 @@ QtObject {
// ────────────────────────────────────────────────────────────────────────
property string launcherScript: Quickshell.env("HOME") + "/.config/quickshell/launcher/launcher.sh"
property string launcherCacheDir: "/tmp/qs_launcher"
property bool launcherCloseOnClickOutside: true
property bool launcherSelectFirst: false
}