mirror of
https://github.com/end-4/dots-hyprland.git
synced 2026-06-05 23:09:26 -05:00
21 lines
542 B
QML
21 lines
542 B
QML
pragma ComponentBehavior: Bound
|
|
import qs.services
|
|
import qs.modules.common
|
|
import qs.modules.common.widgets
|
|
import QtQuick
|
|
import QtQuick.Layouts
|
|
import Quickshell
|
|
import Quickshell.Bluetooth
|
|
import qs.modules.overlay.crosshair
|
|
import qs.modules.overlay.volumeMixer
|
|
import qs.modules.overlay.recorder
|
|
|
|
DelegateChooser {
|
|
id: root
|
|
role: "identifier"
|
|
|
|
DelegateChoice { roleValue: "crosshair"; Crosshair {} }
|
|
DelegateChoice { roleValue: "volumeMixer"; VolumeMixer {} }
|
|
DelegateChoice { roleValue: "recorder"; Recorder {} }
|
|
}
|