display corners

This commit is contained in:
Damocles 2026-04-12 15:17:19 +02:00
parent cfe1f948ec
commit d6d108ee7c
5 changed files with 96 additions and 0 deletions

View file

@ -34,6 +34,7 @@ QtObject {
property int barSpacing: 12
property int moduleSpacing: 4
property int radius: 4
property int screenRadius: 15
property FileView _themeFile: FileView {
path: (Quickshell.env("XDG_CONFIG_HOME") || (Quickshell.env("HOME") + "/.config")) + "/nova-shell/theme.json"
@ -72,5 +73,7 @@ QtObject {
root.moduleSpacing = data.moduleSpacing;
if (data.radius !== undefined)
root.radius = data.radius;
if (data.screenRadius !== undefined)
root.screenRadius = data.screenRadius;
}
}