summaryrefslogtreecommitdiff
path: root/main.scm
blob: 8a345284c8500f2555cdebbfa991cbd675b3ac14 (about) (plain)
1
2
3
4
5
6
7
8
(use-modules (wm))

(when (wm-init)
  (wm-set-configure-notify-handler!
   (lambda (x y w h)
     (display (+ x y w h))
     (display "\n")))
  (wm-quit))