Aylur
Aylur
I can't figure out how to show the window on the correct monitor, no matter how I call `GtkLayerShell.set_monitor` the window stays where it is which is the monitor that...
> Hi, I have a workaround for that. I noticed that when a monitor is powered off the windows are destroyed, so connect to the destroyed signal of that window...
yeah, the hints are kind of hard coded, I'll try to refactor the notifications daemon, and Utils.notify to make it more flexible
It is most probably a Hyprland bug from switching focus from layer to client
No idea why it happens, It seems like to only happen if the label is set with Variable.bind, but if the variable changes value it works correctly after that, if...
Weird, I yanked that part of the code directly from gnome. Did this happen multiple times?
This error usually shows up when you have another unrelated error in your config. I couldn't figure out why this shows up instead of a stack yet
Might be. I am not aware of any backend we could use, but I am sure there is. Is there gnome extension that does this that you know of?
Are you sure you are not instantiating two of these? it works as expected when I tried ```js let count = 0; Hyprland.connect('notify::workspaces', () => { print(count++) }) ```
`Hyprland.bind('workspaces').transform()` will result to `Hyprland.connect('notify::workspaces')`, so the two snippets are essentially same I tried your snippet too, and It works as expected for me, but I discovered that changing a...