-
Notifications
You must be signed in to change notification settings - Fork 0
/
init.lisp
87 lines (63 loc) · 2.96 KB
/
init.lisp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
(cl:in-package :stumpwm)
;;; to debug this init system, uncomment the following two lines.
;; (setf *debug-level* 3)
;; (redirect-all-output (data-dir-file "debug-output" "txt"))
;;; ======================================================================
;;; if quicklisp isn't loaded, load it.
;;; ======================================================================
#-quicklisp
(let ((quicklisp-init (merge-pathnames "quicklisp/setup.lisp"
(user-homedir-pathname))))
(when (probe-file quicklisp-init)
(message "Loading/Using quicklisp, slynk etc....")
(load quicklisp-init)))
;; (use-package :ql)
;; common lisp string processing lib.
(asdf:load-system "str")
(asdf:load-system "cl-mount-info")
;;; ======================================================================
;;; Start a slynk server so we can modify stump as it runs, from emacs
;;; ======================================================================
;; when loading slynk, we must be absolutely sure that the lisp image
;; that stump was built with matches the lisp image we are using in
;; general for development, or you will get gnarly tracebacks.
(asdf:load-system 'slynk)
(setf stumpwm:*top-level-error-action* :break)
;;; ======================================================================
;; idempotentate! a slynk server in our WM process.
;;; ======================================================================
(defvar *slynk-p* nil)
(if *slynk-p*
(message "Slynk server is already running.")
(progn
(slynk:create-server :port 4007
:style slynk:*communication-style*
:dont-close t)
(setf *slynk-p* t)
(message "Slynk server started.")))
;;; ======================================================================
;; init the lisp listener.
;;; ======================================================================
(in-package :stumpwm)
(setf *default-package* :stumpwm)
;;; ======================================================================
;;; too many things use notifications for core functionality to ignore
;;; them. This almost always works at least 80% of the time.
;;; ======================================================================
(load-module "notify")
(defvar *notifications* nil)
(if (and (find-package :notify) (not *notifications*))
(progn
(notify:notify-server-toggle)
(setf *notifications* t))
(message "The notify package was not loaded. It is already present."))
;;; ======================================================================
;;; group definitions
;;; ======================================================================
;; ;; set the name of the initial group, which otherwise defaults to "Default"
;; (setf (group-name (first (screen-groups (current-screen)))) "Terminal")
;; (dolist (space (list "Emacs" "Music" "Mail" "Boomer" "StumpConfig" "Nish" "Kleevo"))
;; (gnewbg space))
;; ;; what to do with the mouse?
(setf *mouse-focus-policy* :sloppy)
(asdf:load-system :stumpwm-init)