mirror of
https://github.com/kossLAN/dots.git
synced 2025-11-05 06:59:50 -05:00
12 lines
271 B
QML
12 lines
271 B
QML
import QtQuick
|
|
import Quickshell.Wayland
|
|
import ".."
|
|
|
|
Text {
|
|
id: windowText
|
|
text: ToplevelManager.activeToplevel?.title ?? ""
|
|
color: ShellSettings.settings.colors["inverse_surface"]
|
|
font.pointSize: 11
|
|
visible: text !== ""
|
|
elide: Text.ElideRight
|
|
}
|