beansprout-custom/README.md
Ben Buhse ec7474c9af
Implement some simple flags and runtime log-levels
I used flags.zig from Isaac Freund for parsing basic CLI arguments,
I don't need much else since most configuration is in Kdl.
e967499fb1/common/flags.zig

I also removed some of the duplicated bits for the exe_check step
since I realized I can just use the beansprout executable for all of it.
2026-02-08 16:25:30 -06:00

1 KiB

beansprout wm

TODOs

These are in rough order of my priority, though no promises I do them in this order.

  • Support per-host config using properties (maybe also per-output?)
  • Add input configuration, i.e. pointer acceleration and that type of thing
  • Support a basic bar
  • Support starting programs at WM launch
  • Support overriding config location
  • Add support for multimedia/brightness keys (this might not be neccesary)
  • Support multiple seats
  • Support clipping floating windows on edge of/between outputs
  • Support changeable primary ratio
  • Support changeable primary count
  • Support multiple outputs
  • Support floating windows
  • Support wallpapers
  • Make "orelse return" bits into errors; handle gracefully
  • Implement runtime log levels
  • Switch all structs to idiomatic Zig init/deinit pattern (init returns value, caller decides stack/heap)
    • I'm not sure I really need this