When I added support for propose dimensions, I was foolishly just choosing the min (or max) if only one was set. However, a lot of windows will a set a very small min size with no max, which meant we would have really tiny windows when first floating one. The fix was to try set to 75% but then clamp to the min/max dimensions the window gave. After fixing that, there was still an issue where windows kept their size after being floated. That's because there was a propose_dimensions call happening later in Window.manage(). I'm skipping that now if a window became floating in the same manage event.
34 lines
1.6 KiB
Markdown
34 lines
1.6 KiB
Markdown
# TODOs
|
|
|
|
These are in rough order of my priority, though no promises I do them in this order.
|
|
|
|
- [ ] Support overriding config location
|
|
- [ ] Support configuring primary vs secondary stack side
|
|
- [ ] Support switch handling (e.g. lid close)
|
|
- [ ] Support keybind modes (e.g. passthrough)
|
|
- [ ] Support solid `background-color` fallback (no wallpaper)
|
|
- [ ] Support per-output wallpapers
|
|
- [ ] Support `focus-follows-cursor` granularity (`normal` vs `always`)
|
|
- [ ] Save window positions between restarts
|
|
- [ ] Support multiple seats
|
|
- [ ] Support clipping floating windows on edge of/between outputs
|
|
- [ ] Use per-output timerfds for tag overlay instead of a single shared one
|
|
- [x] Support changeable primary ratio
|
|
- [x] Support changeable primary count
|
|
- [x] Support multiple outputs
|
|
- [x] Support floating windows
|
|
- [x] Support wallpapers
|
|
- [x] Make "orelse return" bits into errors; handle gracefully
|
|
- [x] Implement runtime log levels
|
|
- [x] Add input configuration, i.e. pointer acceleration and that type of thing
|
|
- [x] Support `None` modifier for keybinds (needed for media/brightness keys)
|
|
- [x] Support per-host config using properties
|
|
- [x] Implement primary count/ratio per tagmask
|
|
- [x] Add primary_count and primary_ratio to Config
|
|
- [x] Implement an optional clock bar
|
|
- [x] Implement a river-tag-overlay clone
|
|
- [x] Add options to the tag overlay
|
|
- [x] Add options to the bar
|
|
- [x] Make a Rect struct to combine x, y, width, and height
|
|
- [x] Support window rules (float/tags by app-id/title)
|
|
- [x] Fix resizing size when you pop a window out, basically, it start with its current size but then when you try resize it goes to 75%
|