aboutsummaryrefslogtreecommitdiff
path: root/stumpwm/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/init.lisp
parentd0e9b38db5cdbba8c29f730f1c2eb5eb478fa776 (diff)
renamed
Diffstat (limited to 'stumpwm/init.lisp')
-rw-r--r--stumpwm/init.lisp22
1 files changed, 0 insertions, 22 deletions
diff --git a/stumpwm/init.lisp b/stumpwm/init.lisp
deleted file mode 100644
index 2be7d39..0000000
--- a/stumpwm/init.lisp
+++ /dev/null
@@ -1,22 +0,0 @@
-(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")