Made the bar scaling relative and ia a config file

This commit is contained in:
Hannes
2026-06-08 19:25:33 +02:00
parent bddebdb983
commit 57d0a2d6a5
11 changed files with 157 additions and 90 deletions
+26
View File
@@ -0,0 +1,26 @@
pragma Singleton
import QtQuick 2.15
QtObject {
readonly property int small_spacing: 4
readonly property int spacing: 8
readonly property int small_radius: 4
readonly property int radius: 6
readonly property int big_radius: 10
readonly property int border_width: 2
readonly property string font: "CodeNewRoman Nerd Font"
function big_font_size(value) {
return value * 0.6
}
function medium_scaling(value) {
return value * 0.4
}
// Tray
readonly property int reload_interval: 10000
readonly property int fast_reload_interval: 10000
}