1
0
mirror of https://github.com/AvengeMedia/DankMaterialShell.git synced 2026-01-24 21:42:51 -05:00

settings: refactor for read-only handling

- Remove default-* copying logic
- Allow in-memory changes of settings/session datas
- Convert SessionData to newer spec pattern
- Migrate weather coords to Session data
- Bricks home manager (temporarily)
This commit is contained in:
bbedward
2026-01-01 13:13:35 -05:00
parent 571a9dabcd
commit 957c89a85d
10 changed files with 431 additions and 203 deletions

View File

@@ -30,9 +30,9 @@ Rectangle {
radius: parent.radius
color: {
if (pressed)
return Theme.primaryPressed;
return Theme.withAlpha(root.textColor, 0.20);
if (hovered)
return Theme.primaryHover;
return Theme.withAlpha(root.textColor, 0.12);
return "transparent";
}