mirror of
https://github.com/stumpwm/stumpwm-contrib.git
synced 2026-09-10 07:26:25 -04:00
13 lines
327 B
Common Lisp
13 lines
327 B
Common Lisp
;;;; disk.asd
|
|
|
|
(asdf:defsystem "disk"
|
|
:serial t
|
|
:description "Display filesystem information in the modeline"
|
|
:author "Morgan Veyret"
|
|
:license "GPLv3"
|
|
:depends-on (:stumpwm
|
|
:cl-diskspace
|
|
(:feature :linux "cl-mount-info"))
|
|
:components ((:file "package")
|
|
(:file "disk")))
|