mirror of
https://github.com/end-4/dots-hyprland.git
synced 2026-06-09 08:49:27 -05:00
21 lines
486 B
QML
21 lines
486 B
QML
import QtQuick
|
|
import Quickshell
|
|
pragma Singleton
|
|
pragma ComponentBehavior: Bound
|
|
|
|
Singleton {
|
|
property QtObject sidebar: QtObject {
|
|
property QtObject leftSide: QtObject {
|
|
property int selectedTab: 0
|
|
}
|
|
property QtObject centerGroup: QtObject {
|
|
property int selectedTab: 0
|
|
}
|
|
property QtObject bottomGroup: QtObject {
|
|
property bool collapsed: false
|
|
property int selectedTab: 0
|
|
}
|
|
}
|
|
|
|
}
|