mirror of
https://github.com/stumpwm/stumpwm-contrib.git
synced 2026-09-10 07:26:25 -04:00
winner-mode lets you have a similar workflow as in emacs, using its winner-mode. Whenever possible, the layout is dumped to a file, and a few commands let you cycle through the dumped layouts.
12 lines
357 B
Common Lisp
12 lines
357 B
Common Lisp
(asdf:defsystem #:winner-mode
|
|
:serial t
|
|
:description "Emacs' winner-mode for StumpWM"
|
|
:author "Florian Margaine <florian@margaine.com>"
|
|
:license "GPLv3"
|
|
:depends-on (:stumpwm)
|
|
:components ((:file "package")
|
|
(:file "macros")
|
|
(:file "variables")
|
|
(:file "dumper")
|
|
(:file "winner-mode")))
|