aboutsummaryrefslogtreecommitdiff
path: root/stumpwm/init.lisp
diff options
context:
space:
mode:
authorBardofSprites <[email protected]>2025-09-23 22:47:04 -0400
committerBardofSprites <[email protected]>2025-09-23 22:47:04 -0400
commit710415d63ca723a41180800e047e022132b9bf26 (patch)
treece70713ae9c1f63b0fee8c6f3ab8e341770ef8ee /stumpwm/init.lisp
parent354f5a666b75cb4eced8f8ba7a4d44ca34b26c93 (diff)
stumpwm window manager
Diffstat (limited to 'stumpwm/init.lisp')
-rw-r--r--stumpwm/init.lisp22
1 files changed, 22 insertions, 0 deletions
diff --git a/stumpwm/init.lisp b/stumpwm/init.lisp
new file mode 100644
index 0000000..2be7d39
--- /dev/null
+++ b/stumpwm/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")