blob: 4dc84210c3b1748e7a7e1190145f46ceeb0dfc16 (
about) (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
(in-package :stumpwm)
(setf *default-package* :stumpwm)
;; Utils
(load "~/.stumpwm.d/utils.lisp")
;; Theme
(load "~/.stumpwm.d/theme.lisp")
;; Commmands
(load "~/.stumpwm.d/commands.lisp")
;; Groups
(load "~/.stumpwm.d/groups.lisp")
;; Modeline
(load "~/.stumpwm.d/modeline.lisp")
;; Keybindings
(load "~/.stumpwm.d/keybindings.lisp")
(when *initializing*
(mapc #'run-shell-command
'("picom"
"transmission-daemon"
"xsetroot -cursor_name left_ptr")))
|