-
Notifications
You must be signed in to change notification settings - Fork 0
/
.stumpwmrc
31 lines (28 loc) · 1.13 KB
/
.stumpwmrc
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
;; new mod-key. c-t? Who the hell came up with that
(set-prefix-key (kbd "C-z"))
;; theme Mode bar
(setf
stumpwm:*mode-line-background-color* "#333333"
stumpwm:*mode-line-foreground-color* "#4c83ff"
stumpwm:*mode-line-border-color* "#4c83ff"
stumpwm:*mode-line-border-width* 1
)
(stumpwm:toggle-mode-line (stumpwm:current-screen) (stumpwm:current-head))
(setf *colors* (list "#333333" ; 0 black
"#fb543f" ; 1 Red
"#95c085" ; 2 Green
"#fac03b" ; 3 Yellow
"#0d6678" ; 4 Blue
"#8ba59b" ; 5 Cyan
"#8f4673" ; 6 Magenta
"#4c83ff" ; 7 Blue
"#665c54" ; 8 Gray
"#fe8625" ; 9 orange
"#32302f")) ; 10 bg
(set-fg-color (nth 7 *colors*))
(set-bg-color (nth 0 *colors*))
(set-border-color (nth 7 *colors*))
(set-focus-color (nth 0 *colors* ))
(set-unfocus-color (nth 4 *colors* ))
(set-float-focus-color (nth 3 *colors* ))
(set-float-unfocus-color (nth 8 *colors* ))