blob: 40b5d1da09a9b5801506d91ecb342bb19ed5e8ef (
about) (
plain)
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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
|
(define-module (wm)
#:use-module (ice-9 match)
#:use-module (srfi srfi-9)
#:use-module (system foreign)
#:export (wm-init
make-config
wm-reconfigure
make-key
make-shift-key
wm-grab-keys
wm-grab-key-with-mod
wm-grab-key-with-mod-shift
wm-set-key-press-handler!
wm-exec-cmd
wm-focus-prev
wm-focus-next
wm-focus-close
wm-pack-left
wm-pack-right
wm-pack-top
wm-pack-bottom
wm-toggle-maximize
wm-toggle-half-left
wm-toggle-half-right
wm-toggle-half-top
wm-toggle-half-bottom
wm-toggle-top-left
wm-toggle-top-right
wm-toggle-bottom-left
wm-toggle-bottom-right
wm-set-workspace
wm-set-focused-client-workspace
wm-client-monitor-prev
wm-client-monitor-next
wm-run
wm-quit))
;; Configuration record
(define-record-type <wm-config>
(make-config
inner-border-width
outer-border-width
magnet-border-width
offset-x
offset-y
offset-width
offset-height
focused-color
unfocused-color
unkillable-color
empty-color
outer-color)
wm-config?
(inner-border-width config-inner-border-width set-config-inner-border-width!)
(outer-border-width config-outer-border-width set-config-outer-border-width!)
(magnet-border-width config-magnet-border-width set-config-magnet-border-width!)
(offset-x config-offset-x set-config-offset-x!)
(offset-y config-offset-y set-config-offset-y!)
(offset-width config-offset-width set-config-offset-width!)
(offset-height config-offset-height set-config-offset-height!)
(focused-color config-focused-color set-config-focused-color!)
(unfocused-color config-unfocused-color set-config-unfocused-color!)
(unkillable-color config-unkillable-color set-config-unkillable-color)
(empty-color config-empty-color set-config-empty-color)
(outer-color config-outer-color set-config-outer-color))
;; Misc. utility functions
(define (uint8-as-bool i)
(not (eq? 0 i)))
;; Link to schewm shared lib
(define libschewm (dynamic-link "libschewm"))
;; Helper to easily define calls into schewm C code
(define (schewm-func return-type name args)
(pointer->procedure
return-type
(dynamic-func name libschewm)
args))
(define c/wm-init
(schewm-func uint8 "wm_init" '()))
(define (wm-init)
(uint8-as-bool (c/wm-init)))
(define wm-quit
(schewm-func void "wm_quit" '()))
(define wm-run
(schewm-func void "wm_run" '()))
(define c/parse-color
(schewm-func uint32 "parse_color" (list '*)))
(define (parse-color s)
(c/parse-color (string->pointer s)))
(define c/wm-reconfigure
(schewm-func void
"wm_reconfigure"
(list uint16
uint16
uint16
int16
int16
uint16
uint16
uint32
uint32
uint32
uint32
uint32)))
(define (wm-reconfigure config)
(c/wm-reconfigure (config-inner-border-width config)
(config-outer-border-width config)
(config-magnet-border-width config)
(config-offset-x config)
(config-offset-y config)
(config-offset-width config)
(config-offset-height config)
(parse-color (config-focused-color config))
(parse-color (config-unfocused-color config))
(parse-color (config-unkillable-color config))
(parse-color (config-empty-color config))
(parse-color (config-outer-color config))))
(define wm-focus-prev
(schewm-func void "wm_focus_prev" '()))
(define wm-focus-next
(schewm-func void "wm_focus_next" '()))
(define wm-focus-close
(schewm-func void "wm_focus_close" '()))
(define wm-pack-left
(schewm-func void "wm_pack_left" '()))
(define wm-pack-right
(schewm-func void "wm_pack_right" '()))
(define wm-pack-top
(schewm-func void "wm_pack_top" '()))
(define wm-pack-bottom
(schewm-func void "wm_pack_bottom" '()))
(define wm-toggle-maximize
(schewm-func void "wm_toggle_maximize" '()))
(define wm-toggle-half-left
(schewm-func void "wm_toggle_half_left" '()))
(define wm-toggle-half-right
(schewm-func void "wm_toggle_half_right" '()))
(define wm-toggle-half-top
(schewm-func void "wm_toggle_half_top" '()))
(define wm-toggle-half-bottom
(schewm-func void "wm_toggle_half_bottom" '()))
(define wm-toggle-top-left
(schewm-func void "wm_toggle_top_left" '()))
(define wm-toggle-top-right
(schewm-func void "wm_toggle_top_right" '()))
(define wm-toggle-bottom-left
(schewm-func void "wm_toggle_bottom_left" '()))
(define wm-toggle-bottom-right
(schewm-func void "wm_toggle_bottom_right" '()))
(define wm-set-workspace
(schewm-func void
"wm_set_workspace"
(list uint32)))
(define wm-set-focused-client-workspace
(schewm-func void
"wm_set_focused_client_workspace"
(list uint32)))
(define wm-client-monitor-prev
(schewm-func void "wm_client_monitor_prev" '()))
(define wm-client-monitor-next
(schewm-func void "wm_client_monitor_next" '()))
(define c/keysym-from-str
(schewm-func uint32
"keysym_from_str"
(list '*)))
(define (string->key s)
(c/keysym-from-str (string->pointer s)))
(define (make-key key)
(list #f (string->key key)))
(define (make-shift-key key)
(list #t (string->key key)))
(define c/wm-grab-key-with-mod
(schewm-func void "wm_grab_key_with_mod"
(list uint32 '*)))
(define (wm-grab-key-with-mod key proc)
(c/wm-grab-key-with-mod key (procedure->pointer void proc '())))
(define c/wm-grab-key-with-mod-shift
(schewm-func void "wm_grab_key_with_mod_shift"
(list uint32 '*)))
(define (wm-grab-key-with-mod-shift key proc)
(c/wm-grab-key-with-mod-shift key (procedure->pointer void proc '())))
(define (wm-grab-keys keybindings)
(unless (null? keybindings)
(let ((keybinding (car keybindings)))
(match keybinding
(((with-shift key) . func)
(if with-shift
(wm-grab-key-with-mod-shift key func)
(wm-grab-key-with-mod key func))))
(wm-grab-keys (cdr keybindings)))))
(define c/wm-set-key-press-handler
(schewm-func void
"wm_set_key_press_handler"
(list '*)))
(define (wm-set-key-press-handler! handler)
;; Event handler args are:
;; - mod (`ev.state' clean from noise, uint16)
;; - keysym (`ev.detail' converted to keysym, uint32)
(c/wm-set-key-press-handler
(procedure->pointer void
handler
(list uint16 uint32))))
(define (wm-exec-cmd . args)
(when (eq? (primitive-fork) 0)
(apply execlp (cons (car args) args))))
|