quickshell/modules/Bar/Title.qml

19 lines
485 B
QML
Raw Normal View History

import Quickshell
import QtQuick
import "../../reusables/"
import "../../settings/"
import "../../"
import Quickshell.Hyprland
Item {
id: textContainer
implicitWidth: text.implicitWidth
implicitHeight: Settings.config.barHeight
CustomText {
id: text
anchors.horizontalCenter: parent.horizontalCenter
anchors.verticalCenter: parent.verticalCenter
text: Hyprland.activeToplevel.activated ? Hyprland.activeToplevel.title : "sigma"
}
}