blob: ccbaf58244857b19fd7bef3d97f3c4e3fcc2c22c (
about) (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
(in-package :stumpwm)
(setf *default-package* :stumpwm)
(when *initializing*
(grename "[ALPHA]")
(gnewbg "[BETA]")
(gnewbg-dynamic "[GAMMA]"))
(clear-window-placement-rules)
;; Utils
(load "~/.stumpwm.d/utils.lisp")
;; Theme
(load "~/.stumpwm.d/theme.lisp")
;; Commmands
(load "~/.stumpwm.d/commands.lisp")
;; Modeline
(load "~/.stumpwm.d/modeline.lisp")
;; Keybindings
(load "~/.stumpwm.d/keybindings.lisp")
|