forked from Shinonome/dots-hyprland
86 lines
3.1 KiB
QML
86 lines
3.1 KiB
QML
import "root:/modules/common"
|
|
import "root:/modules/common/widgets"
|
|
import QtQuick
|
|
import QtQuick.Layouts
|
|
import Quickshell
|
|
import Quickshell.Io
|
|
import Quickshell.Hyprland
|
|
import Quickshell.Services.Pipewire
|
|
|
|
Item {
|
|
id: root
|
|
property bool borderless: ConfigOptions.bar.borderless
|
|
implicitWidth: rowLayout.implicitWidth + rowLayout.spacing * 2
|
|
|
|
RowLayout {
|
|
id: rowLayout
|
|
|
|
spacing: 4
|
|
anchors.centerIn: parent
|
|
|
|
Loader {
|
|
active: ConfigOptions.bar.utilButtons.showScreenSnip
|
|
visible: ConfigOptions.bar.utilButtons.showScreenSnip
|
|
sourceComponent: CircleUtilButton {
|
|
Layout.alignment: Qt.AlignVCenter
|
|
onClicked: Hyprland.dispatch("exec hyprshot --freeze --clipboard-only --mode region --silent")
|
|
MaterialSymbol {
|
|
horizontalAlignment: Qt.AlignHCenter
|
|
fill: 1
|
|
text: "screenshot_region"
|
|
iconSize: Appearance.font.pixelSize.large
|
|
color: Appearance.colors.colOnLayer2
|
|
}
|
|
}
|
|
}
|
|
|
|
Loader {
|
|
active: ConfigOptions.bar.utilButtons.showColorPicker
|
|
visible: ConfigOptions.bar.utilButtons.showColorPicker
|
|
sourceComponent: CircleUtilButton {
|
|
Layout.alignment: Qt.AlignVCenter
|
|
onClicked: Hyprland.dispatch("exec hyprpicker -a")
|
|
MaterialSymbol {
|
|
horizontalAlignment: Qt.AlignHCenter
|
|
fill: 1
|
|
text: "colorize"
|
|
iconSize: Appearance.font.pixelSize.large
|
|
color: Appearance.colors.colOnLayer2
|
|
}
|
|
}
|
|
}
|
|
|
|
Loader {
|
|
active: ConfigOptions.bar.utilButtons.showKeyboardToggle
|
|
visible: ConfigOptions.bar.utilButtons.showKeyboardToggle
|
|
sourceComponent: CircleUtilButton {
|
|
Layout.alignment: Qt.AlignVCenter
|
|
onClicked: Hyprland.dispatch("global quickshell:oskToggle")
|
|
MaterialSymbol {
|
|
horizontalAlignment: Qt.AlignHCenter
|
|
fill: 0
|
|
text: "keyboard"
|
|
iconSize: Appearance.font.pixelSize.large
|
|
color: Appearance.colors.colOnLayer2
|
|
}
|
|
}
|
|
}
|
|
|
|
Loader {
|
|
active: ConfigOptions.bar.utilButtons.showMicToggle
|
|
visible: ConfigOptions.bar.utilButtons.showMicToggle
|
|
sourceComponent: CircleUtilButton {
|
|
Layout.alignment: Qt.AlignVCenter
|
|
onClicked: Hyprland.dispatch("exec wpctl set-mute @DEFAULT_SOURCE@ toggle")
|
|
MaterialSymbol {
|
|
horizontalAlignment: Qt.AlignHCenter
|
|
fill: 0
|
|
text: Pipewire.defaultAudioSource?.audio?.muted ? "mic_off" : "mic"
|
|
iconSize: Appearance.font.pixelSize.large
|
|
color: Appearance.colors.colOnLayer2
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|