Benedek Dévényi
Benedek Dévényi
# Gtk themes for Tukaan Tukaan uses Gttk to draw Gtk themes. Gttk is implemented as a Git submodule, the repo can be found at [github.com/tukaan/Gttk](https://github.com/tukaan/Gttk) ## Basics ```python from...
# Theming with css in Tukaan ```python app.theme = CssTheme(Path("./themes/sun-valley.css")) ``` `sun-valley.css` : ```css @source('./images/light'); /* Specify the image resource path */ @parent('clam'); /* Set parent theme (default is clam)...
```[tasklist] ### Multiple monitors - [ ] Get monitors and their properties - [ ] Move windows to another monitor ```
@sumeshir26 i see, you copied this part from Tukaan, but did you ever test it? (No). This code won't work as it is. https://github.com/Futura-Py/TimerX/blob/f1a83751a3f0ba2e334a48cc2c4b3b7be33408e2/main.py#L62-L69 `tkinter.Tk` (`app` in this case) doesn't...
What we discussed in PM @geigi, except that I added Ruff instead, so it finishes much faster. Ruff also has a ton of rules built-in (https://github.com/astral-sh/ruff#rules), so we might need...
Modernize storage list, so that it uses libadwaita widgets, works correctly on mobile and some other stuff. In the process I also refactored the storages part of the settings view...
Fixes something I broke in #825
Fixes #637
@grahamvh, AFAICT you're a native English speaker. Could you review the newly added release notes for 1.3.0?
Using a `GtkGestureClick` here is not possible, as `GtkRange`'s internal gesture controller claims the button press event, and thus the released signal doesn't get emitted. Therefore I added this hacky...