No description
Find a file
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
examples Complete wallpaper support with new config 2026-02-07 19:11:10 -06:00
LICENSES Implement some simple flags and runtime log-levels 2026-02-08 16:25:30 -06:00
protocol Begin work to add wallpaper support to beansprout 2026-02-06 16:37:33 -06:00
src Implement some simple flags and runtime log-levels 2026-02-08 16:25:30 -06:00
.gitignore initial commit 2025-05-03 21:07:26 -05:00
build.zig Implement some simple flags and runtime log-levels 2026-02-08 16:25:30 -06:00
build.zig.zon Begin work to add wallpaper support to beansprout 2026-02-06 16:37:33 -06:00
README.md Implement some simple flags and runtime log-levels 2026-02-08 16:25:30 -06:00

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