gitextract_jnk58wqp/ ├── .gitignore ├── AUTHORS ├── COPYING ├── ChangeLog ├── INSTALL ├── LICENSE ├── Makefile.am ├── Makefile.in ├── NEWS ├── README ├── README-in.org ├── aclocal.m4 ├── build_aux/ │ ├── install-sh │ ├── missing │ └── texinfo.tex ├── configure ├── configure.ac ├── guile-wm ├── guile-wm.texi ├── module/ │ ├── Makefile.am │ ├── Makefile.in │ ├── guile-wm/ │ │ ├── color.scm │ │ ├── command.scm │ │ ├── draw.scm │ │ ├── focus.scm │ │ ├── icccm.scm │ │ ├── keymap.scm │ │ ├── keystroke.scm │ │ ├── keysyms.scm │ │ ├── log.scm │ │ ├── module/ │ │ │ ├── cursor.scm │ │ │ ├── fullscreen.scm │ │ │ ├── help.scm │ │ │ ├── magnetic.scm │ │ │ ├── menu.scm │ │ │ ├── message.scm │ │ │ ├── minibuffer.scm │ │ │ ├── randr.scm │ │ │ ├── repl.scm │ │ │ ├── root-keymap.scm │ │ │ ├── simple-focus.scm │ │ │ ├── simple-reparent.scm │ │ │ ├── tiling.scm │ │ │ ├── time.scm │ │ │ ├── tinywm.scm │ │ │ ├── window-cycle.scm │ │ │ └── window-menu.scm │ │ ├── redirect.scm │ │ ├── reparent.scm │ │ ├── shared.scm │ │ ├── text-edit.scm │ │ ├── text.scm │ │ └── user.scm │ └── language/ │ └── command/ │ └── spec.scm └── wm-init-sample.scm