Scott Moreau
Scott Moreau
I finally found a vcard that worked, but for simple qr code images created with i.e. `qrencode`, it never recognizes the image as a qr code. Using implementation("com.github.yuriy-budiyev:code-scanner:2.3.2")
This feels like buggy behavior.
Trying to set int or animate options does not work when typing them into the spin button field. Scrolling and clicking the tick boxes to change the value does, however....
Add helix animation.
When running wayfire on one tty and having clients that damage constantly, switching to another tty causes wayfire to consume 100% cpu. This patch disconnects the paint handler when the...
Gotchas: wl_drm was dropped, so clients must update. A notable one is libva, which stopped working with wlroots 0.18 until upgrading libva. wlr_input_inhibit was dropped and as of now, there...
``` #!/usr/bin/python3 import gi gi.require_version('Gtk', '3.0') from gi.repository import Gtk class MyWindow(Gtk.Window): def __init__(self): super().__init__(title="what's up") button = Gtk.Button(label="Open Modal") button.connect("clicked", self.on_button_clicked) self.add(button) self.set_default_size(400, 400) def on_button_clicked(self, widget): dialog =...