summaryrefslogtreecommitdiff
path: root/init.lisp
diff options
context:
space:
mode:
authoryuzu-eva <stevenhu@web.de>2024-12-17 18:52:36 +0100
committeryuzu-eva <stevenhu@web.de>2024-12-17 18:52:36 +0100
commit1c8cab9a44fa80e88afc016067623d7e3a25bb10 (patch)
tree27146ac82e14cf3201e9864f7fed40f3cbfc5e7c /init.lisp
initial commit
Diffstat (limited to 'init.lisp')
-rw-r--r--init.lisp15
1 files changed, 15 insertions, 0 deletions
diff --git a/init.lisp b/init.lisp
new file mode 100644
index 0000000..90257f3
--- /dev/null
+++ b/init.lisp
@@ -0,0 +1,15 @@
+(defpackage #:config
+ (:use #:cl #:stumpwm))
+(in-package #:config)
+
+(set-module-dir (uiop:subpathname* (user-homedir-pathname) ".stumpwm.d/modules"))
+
+(load "~/.stumpwm.d/modeline.lisp")
+(load "~/.stumpwm.d/keybinds.lisp")
+(load "~/.stumpwm.d/visual.lisp")
+
+(when *initializing*
+ (dolist (h (screen-heads (current-screen)))
+ (enable-mode-line (current-screen) h t)))
+
+(stumptray::stumptray)