quickshell/modules/Bar/Title.qml

20 lines
536 B
QML
Raw Normal View History

import Quickshell
import QtQuick
import "../../reusables/"
import "../../settings/"
import "../../"
import Quickshell.Hyprland
Item {
2026-01-16 14:44:10 +01:00
id: root
readonly property var activeWindow: Hyprland.activeToplevel
implicitWidth: text.implicitWidth
implicitHeight: Settings.config.barHeight
CustomText {
id: text
anchors.horizontalCenter: parent.horizontalCenter
anchors.verticalCenter: parent.verticalCenter
2026-01-16 14:44:10 +01:00
text: root.activeWindow?.activated ?Hyprland.activeToplevel.title : "Desktop"
}
}