Resources.qml (view raw)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 |
pragma Singleton
import QtQuick
import Quickshell
import "."
Singleton {
readonly property string sep: `<span style='color:${Style.sand};'>│</span>`
property var fontsize: {
"topbar_text": 16 * Size.scale,
"topbar_bamum": 14 * Size.scale,
"topbar_icon": 12 * Size.scale,
"workspace_icon": 10 * Size.scale,
"bottombar_sep": 16 * Size.scale,
"bottombar_icon": 10 * Size.scale,
"moonphase": 24 * Size.scale,
"network_indicator": 9 * Size.scale
}
property var barsize: {
"topbar": 17 * Size.scale,
"bottombar": 15 * Size.scale
//on twister, to maintain optimal aspect ratio for terminal at fontsize 16, with 1.5 monitor scaling, bars should have a combined 10px,27px, or 45px height
//on irregularnotes, combined height should be 25px or 42px
}
}
|