diff options
Diffstat (limited to 'modules/bar/popouts/ActiveWindow.qml')
| -rw-r--r-- | modules/bar/popouts/ActiveWindow.qml | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/modules/bar/popouts/ActiveWindow.qml b/modules/bar/popouts/ActiveWindow.qml new file mode 100644 index 0000000..06ad52c --- /dev/null +++ b/modules/bar/popouts/ActiveWindow.qml @@ -0,0 +1,33 @@ + + +import "root:/widgets" +import "root:/services" +import "root:/utils" +import "root:/config" +import Quickshell.Wayland +import QtQuick + +Item { + id: root + + implicitWidth: child.implicitWidth + implicitHeight: child.implicitHeight + + Column { + id: child + + anchors.centerIn: parent + + StyledText { + text: Hyprland.activeClient?.title ?? "" + } + + StyledText { + text: Hyprland.activeClient?.wmClass ?? "" + } + + ScreencopyView { + + } + } +} |