My stumpwm configuration

stumptray.asd 382B

12345678910111213141516
  1. ;;;; stumptray.asd
  2. (asdf:compute-source-registry)
  3. (declaim (optimize (speed 0) (debug 3) (safety 3)))
  4. (asdf:defsystem #:stumptray
  5. :serial t
  6. :description "Describe stumptray here"
  7. :author "Michael Filonenko"
  8. :license "GPLv3"
  9. :depends-on (#:stumpwm
  10. #:xembed
  11. #:alexandria)
  12. :components ((:file "package")
  13. (:file "stumptray")))