-
Notifications
You must be signed in to change notification settings - Fork 54
Open
Description
Description
When moving a Hyprland workspace from one monitor to another, it looses its active
status.
Reproducer
Use the following Quickshell config:
import Quickshell
import Quickshell.Hyprland
import QtQuick
Repeater {
model: Hyprland.workspaces.values
Item {
required property var modelData
property bool isActive: modelData.active
onIsActiveChanged: {
console.log(`Workspace ${modelData.id} is now ${modelData.active ? "active" : "inactive"}`);
}
}
}
Trimmed output for workspace ID 1:
DEBUG qml: Workspace 1 is now active
<< Moving to another monitor here >>
DEBUG qml: Workspace 1 is now inactive
However, after the Workspace is moved, it is still focused on the new monitor
Metadata
Metadata
Assignees
Labels
No labels