aboutsummaryrefslogtreecommitdiff
path: root/stumpwm/.stumpwm.d/init.lisp
diff options
context:
space:
mode:
authorBardofSprites <bard>2025-09-25 16:54:17 -0400
committerBardofSprites <bard>2025-09-25 16:54:17 -0400
commit78441a99ebc93d8f284a6a64c98fae5ef847184d (patch)
tree27cfc5fb695c8096d15a577a2fea07c36d601616 /stumpwm/.stumpwm.d/init.lisp
parentd0e9b38db5cdbba8c29f730f1c2eb5eb478fa776 (diff)
renamed
Diffstat (limited to 'stumpwm/.stumpwm.d/init.lisp')
-rw-r--r--stumpwm/.stumpwm.d/init.lisp22
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")