diff options
Diffstat (limited to 'stumpwm/.stumpwm.d/init.lisp')
| -rw-r--r-- | stumpwm/.stumpwm.d/init.lisp | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/stumpwm/.stumpwm.d/init.lisp b/stumpwm/.stumpwm.d/init.lisp new file mode 100644 index 0000000..2be7d39 --- /dev/null +++ b/stumpwm/.stumpwm.d/init.lisp @@ -0,0 +1,22 @@ +(in-package :stumpwm) + +;;;; Modules + +;;;; REPL +(ql:quickload :slynk) + +;; do prefix ; (keybind), type slynk, enter port num, sly-connect with +;; correct port num +(defcommand slynk (port) ((:string "Port number: ")) + (sb-thread:make-thread + (lambda () + (slynk:create-server :port (parse-integer port) :dont-close t)) + :name "slynk-manual")) + +(setq *mouse-focus-policy* :sloppy + *float-window-modifier* :super) + +(load "~/.stumpwm.d/keybinds.lisp") +(load "~/.stumpwm.d/window.lisp") +(load "~/.stumpwm.d/style.lisp") +(load "~/.stumpwm.d/modeline.lisp") |
