JLErvin / berry

:strawberry: A healthy, byte-sized window manager
MIT License
1.01k stars 46 forks source link

Missing documentation on valid modifiers for move_mask, resize_mask #175

Closed dontlaugh closed 2 years ago

dontlaugh commented 2 years ago

Resize masks and move masks were reworked in this PR:

https://github.com/JLErvin/berry/pull/146

But the man page (and website?) could be a bit better.

The current man page looks like this:

       move_mask Mod1/Mod2/Mod3/Mod4/Mod5
              Determine the button mask used to move windows using the mouse.

       resize_mask Mod1/Mod2/Mod3/Mod4/Mod5
              Determine the button mask  used  to  resize  windows  using  the  mouse.   If
              move_mask and resize_mask use the same value, the move_mask takes precedence.`

But technically "Mod1", and the others listed, are invalid. Only lower-case strings (e.g. "mod1") are accepted.

dontlaugh commented 2 years ago

Fixed in https://github.com/JLErvin/berry/pull/178