blob: 90257f3dd51c3c1c5b0842b1783678b665cdc6a2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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)
|