mirror of
https://github.com/end-4/dots-hyprland.git
synced 2026-06-09 16:59:27 -05:00
22 lines
700 B
QML
22 lines
700 B
QML
import QtQuick
|
|
import Quickshell
|
|
import Quickshell.Io
|
|
|
|
JsonObject {
|
|
property JsonObject bar: JsonObject {
|
|
property list<var> leftWidgets: ["HLeftSidebarButton"]
|
|
property list<var> centerLeftWidgets: ["HTime"]
|
|
property list<var> centerWidgets: ["HWorkspaces"]
|
|
property list<var> centerRightWidgets: ["HResources"]
|
|
property list<var> rightWidgets: ["HSystemIndicators"]
|
|
property bool m3ExpressiveGrouping: true
|
|
|
|
property JsonObject resources: JsonObject {
|
|
property bool showMemory: false
|
|
property bool showRam: false
|
|
property bool showSwap: false
|
|
property bool showCpu: false
|
|
}
|
|
}
|
|
}
|