Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 982 Bytes

File metadata and controls

34 lines (25 loc) · 982 Bytes

alecigne’s StumpWM config

My StumpWM config.

Structure

The structure is pretty standard I think for a Common Lisp project.

  • init.lisp is specific to StumpWM, and loads the ASDF system defined in stumpwm-config.asd.
  • The files in ./src are loaded in an order defined in the ASDF system.

    I’m using modules such as sound, bluetooth, etc. that don’t depend on stumpwm for now. Only the main config module does, since it wires everything into a StumpWM config per se.

  • There are a few tests, because why not? They can be executed using just test (see the Justfile).

Other configs