├── .editorconfig ├── .gitignore ├── CONTRIBUTING.md ├── Doxyfile ├── LICENSE ├── Makefile.in ├── README.md ├── README.upgrading ├── autogen.sh ├── configure.ac ├── contrib ├── CREDITS ├── Makefile.in ├── jwm-blue.svg ├── jwm-gray.svg ├── jwm-orange.svg ├── jwm-red.svg └── jwm.xbm ├── doc-footer.shtml ├── doc-header.shtml ├── example.jwmrc ├── jwm.1.in ├── po ├── LINGUAS ├── Makevars ├── POTFILES.in ├── boldquot.sed ├── da.po ├── de.po ├── en@boldquot.header ├── en@quot.header ├── es.po ├── fr.po ├── hu.po ├── insert-header.sin ├── it.po ├── jwm.pot ├── ka.po ├── lt.po ├── nl.po ├── pl.po ├── pt.po ├── pt_BR.po ├── quot.sed ├── remove-potcdate.sin ├── ru.po ├── tr.po ├── uk.po ├── zh_CN.po └── zh_TW.po ├── src ├── Makefile.in ├── action.c ├── action.h ├── background.c ├── background.h ├── binding.c ├── binding.h ├── border.c ├── border.h ├── button.c ├── button.h ├── client.c ├── client.h ├── clientlist.c ├── clientlist.h ├── clock.c ├── clock.h ├── color.c ├── color.h ├── command.c ├── command.h ├── confirm.c ├── confirm.h ├── cursor.c ├── cursor.h ├── debug.c ├── debug.h ├── default.c ├── default.h ├── desktop.c ├── desktop.h ├── dock.c ├── dock.h ├── error.c ├── error.h ├── event.c ├── event.h ├── font.c ├── font.h ├── grab.c ├── grab.h ├── gradient.c ├── gradient.h ├── group.c ├── group.h ├── help.c ├── help.h ├── hint.c ├── hint.h ├── icon.c ├── icon.h ├── image.c ├── image.h ├── jwm.h ├── jxlib.h ├── lex.c ├── lex.h ├── main.c ├── main.h ├── match.c ├── match.h ├── menu.c ├── menu.h ├── misc.c ├── misc.h ├── move.c ├── move.h ├── outline.c ├── outline.h ├── pager.c ├── pager.h ├── parse.c ├── parse.h ├── place.c ├── place.h ├── popup.c ├── popup.h ├── render.c ├── render.h ├── resize.c ├── resize.h ├── root.c ├── root.h ├── screen.c ├── screen.h ├── settings.c ├── settings.h ├── spacer.c ├── spacer.h ├── status.c ├── status.h ├── swallow.c ├── swallow.h ├── taskbar.c ├── taskbar.h ├── timing.c ├── timing.h ├── tray.c ├── tray.h ├── traybutton.c ├── traybutton.h ├── winmenu.c └── winmenu.h └── xslt ├── jwm-2.3.xslt └── jwm-2.4.xslt /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joewing/jwm/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joewing/jwm/HEAD/.gitignore -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joewing/jwm/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joewing/jwm/HEAD/Doxyfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joewing/jwm/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joewing/jwm/HEAD/Makefile.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joewing/jwm/HEAD/README.md -------------------------------------------------------------------------------- /README.upgrading: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joewing/jwm/HEAD/README.upgrading -------------------------------------------------------------------------------- /autogen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joewing/jwm/HEAD/autogen.sh -------------------------------------------------------------------------------- /configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joewing/jwm/HEAD/configure.ac -------------------------------------------------------------------------------- /contrib/CREDITS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joewing/jwm/HEAD/contrib/CREDITS -------------------------------------------------------------------------------- /contrib/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joewing/jwm/HEAD/contrib/Makefile.in -------------------------------------------------------------------------------- /contrib/jwm-blue.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joewing/jwm/HEAD/contrib/jwm-blue.svg -------------------------------------------------------------------------------- /contrib/jwm-gray.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joewing/jwm/HEAD/contrib/jwm-gray.svg -------------------------------------------------------------------------------- /contrib/jwm-orange.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joewing/jwm/HEAD/contrib/jwm-orange.svg -------------------------------------------------------------------------------- /contrib/jwm-red.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joewing/jwm/HEAD/contrib/jwm-red.svg -------------------------------------------------------------------------------- /contrib/jwm.xbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joewing/jwm/HEAD/contrib/jwm.xbm -------------------------------------------------------------------------------- /doc-footer.shtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joewing/jwm/HEAD/doc-footer.shtml -------------------------------------------------------------------------------- /doc-header.shtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joewing/jwm/HEAD/doc-header.shtml -------------------------------------------------------------------------------- /example.jwmrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joewing/jwm/HEAD/example.jwmrc -------------------------------------------------------------------------------- /jwm.1.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joewing/jwm/HEAD/jwm.1.in -------------------------------------------------------------------------------- /po/LINGUAS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joewing/jwm/HEAD/po/LINGUAS -------------------------------------------------------------------------------- /po/Makevars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joewing/jwm/HEAD/po/Makevars -------------------------------------------------------------------------------- /po/POTFILES.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joewing/jwm/HEAD/po/POTFILES.in -------------------------------------------------------------------------------- /po/boldquot.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joewing/jwm/HEAD/po/boldquot.sed -------------------------------------------------------------------------------- /po/da.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joewing/jwm/HEAD/po/da.po -------------------------------------------------------------------------------- /po/de.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joewing/jwm/HEAD/po/de.po -------------------------------------------------------------------------------- /po/en@boldquot.header: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joewing/jwm/HEAD/po/en@boldquot.header -------------------------------------------------------------------------------- /po/en@quot.header: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joewing/jwm/HEAD/po/en@quot.header -------------------------------------------------------------------------------- /po/es.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joewing/jwm/HEAD/po/es.po -------------------------------------------------------------------------------- /po/fr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joewing/jwm/HEAD/po/fr.po -------------------------------------------------------------------------------- /po/hu.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joewing/jwm/HEAD/po/hu.po -------------------------------------------------------------------------------- /po/insert-header.sin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joewing/jwm/HEAD/po/insert-header.sin -------------------------------------------------------------------------------- /po/it.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joewing/jwm/HEAD/po/it.po -------------------------------------------------------------------------------- /po/jwm.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joewing/jwm/HEAD/po/jwm.pot -------------------------------------------------------------------------------- /po/ka.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joewing/jwm/HEAD/po/ka.po -------------------------------------------------------------------------------- /po/lt.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joewing/jwm/HEAD/po/lt.po -------------------------------------------------------------------------------- /po/nl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joewing/jwm/HEAD/po/nl.po -------------------------------------------------------------------------------- /po/pl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joewing/jwm/HEAD/po/pl.po -------------------------------------------------------------------------------- /po/pt.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joewing/jwm/HEAD/po/pt.po -------------------------------------------------------------------------------- /po/pt_BR.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joewing/jwm/HEAD/po/pt_BR.po -------------------------------------------------------------------------------- /po/quot.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joewing/jwm/HEAD/po/quot.sed -------------------------------------------------------------------------------- /po/remove-potcdate.sin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joewing/jwm/HEAD/po/remove-potcdate.sin -------------------------------------------------------------------------------- /po/ru.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joewing/jwm/HEAD/po/ru.po -------------------------------------------------------------------------------- /po/tr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joewing/jwm/HEAD/po/tr.po -------------------------------------------------------------------------------- /po/uk.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joewing/jwm/HEAD/po/uk.po -------------------------------------------------------------------------------- /po/zh_CN.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joewing/jwm/HEAD/po/zh_CN.po -------------------------------------------------------------------------------- /po/zh_TW.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joewing/jwm/HEAD/po/zh_TW.po -------------------------------------------------------------------------------- /src/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joewing/jwm/HEAD/src/Makefile.in -------------------------------------------------------------------------------- /src/action.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joewing/jwm/HEAD/src/action.c -------------------------------------------------------------------------------- /src/action.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joewing/jwm/HEAD/src/action.h -------------------------------------------------------------------------------- /src/background.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joewing/jwm/HEAD/src/background.c -------------------------------------------------------------------------------- /src/background.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joewing/jwm/HEAD/src/background.h -------------------------------------------------------------------------------- /src/binding.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joewing/jwm/HEAD/src/binding.c -------------------------------------------------------------------------------- /src/binding.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joewing/jwm/HEAD/src/binding.h -------------------------------------------------------------------------------- /src/border.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joewing/jwm/HEAD/src/border.c -------------------------------------------------------------------------------- /src/border.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joewing/jwm/HEAD/src/border.h -------------------------------------------------------------------------------- /src/button.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joewing/jwm/HEAD/src/button.c -------------------------------------------------------------------------------- /src/button.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joewing/jwm/HEAD/src/button.h -------------------------------------------------------------------------------- /src/client.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joewing/jwm/HEAD/src/client.c -------------------------------------------------------------------------------- /src/client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joewing/jwm/HEAD/src/client.h -------------------------------------------------------------------------------- /src/clientlist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joewing/jwm/HEAD/src/clientlist.c -------------------------------------------------------------------------------- /src/clientlist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joewing/jwm/HEAD/src/clientlist.h -------------------------------------------------------------------------------- /src/clock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joewing/jwm/HEAD/src/clock.c -------------------------------------------------------------------------------- /src/clock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joewing/jwm/HEAD/src/clock.h -------------------------------------------------------------------------------- /src/color.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joewing/jwm/HEAD/src/color.c -------------------------------------------------------------------------------- /src/color.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joewing/jwm/HEAD/src/color.h -------------------------------------------------------------------------------- /src/command.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joewing/jwm/HEAD/src/command.c -------------------------------------------------------------------------------- /src/command.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joewing/jwm/HEAD/src/command.h -------------------------------------------------------------------------------- /src/confirm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joewing/jwm/HEAD/src/confirm.c -------------------------------------------------------------------------------- /src/confirm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joewing/jwm/HEAD/src/confirm.h -------------------------------------------------------------------------------- /src/cursor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joewing/jwm/HEAD/src/cursor.c -------------------------------------------------------------------------------- /src/cursor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joewing/jwm/HEAD/src/cursor.h -------------------------------------------------------------------------------- /src/debug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joewing/jwm/HEAD/src/debug.c -------------------------------------------------------------------------------- /src/debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joewing/jwm/HEAD/src/debug.h -------------------------------------------------------------------------------- /src/default.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joewing/jwm/HEAD/src/default.c -------------------------------------------------------------------------------- /src/default.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joewing/jwm/HEAD/src/default.h -------------------------------------------------------------------------------- /src/desktop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joewing/jwm/HEAD/src/desktop.c -------------------------------------------------------------------------------- /src/desktop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joewing/jwm/HEAD/src/desktop.h -------------------------------------------------------------------------------- /src/dock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joewing/jwm/HEAD/src/dock.c -------------------------------------------------------------------------------- /src/dock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joewing/jwm/HEAD/src/dock.h -------------------------------------------------------------------------------- /src/error.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joewing/jwm/HEAD/src/error.c -------------------------------------------------------------------------------- /src/error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joewing/jwm/HEAD/src/error.h -------------------------------------------------------------------------------- /src/event.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joewing/jwm/HEAD/src/event.c -------------------------------------------------------------------------------- /src/event.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joewing/jwm/HEAD/src/event.h -------------------------------------------------------------------------------- /src/font.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joewing/jwm/HEAD/src/font.c -------------------------------------------------------------------------------- /src/font.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joewing/jwm/HEAD/src/font.h -------------------------------------------------------------------------------- /src/grab.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joewing/jwm/HEAD/src/grab.c -------------------------------------------------------------------------------- /src/grab.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joewing/jwm/HEAD/src/grab.h -------------------------------------------------------------------------------- /src/gradient.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joewing/jwm/HEAD/src/gradient.c -------------------------------------------------------------------------------- /src/gradient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joewing/jwm/HEAD/src/gradient.h -------------------------------------------------------------------------------- /src/group.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joewing/jwm/HEAD/src/group.c -------------------------------------------------------------------------------- /src/group.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joewing/jwm/HEAD/src/group.h -------------------------------------------------------------------------------- /src/help.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joewing/jwm/HEAD/src/help.c -------------------------------------------------------------------------------- /src/help.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joewing/jwm/HEAD/src/help.h -------------------------------------------------------------------------------- /src/hint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joewing/jwm/HEAD/src/hint.c -------------------------------------------------------------------------------- /src/hint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joewing/jwm/HEAD/src/hint.h -------------------------------------------------------------------------------- /src/icon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joewing/jwm/HEAD/src/icon.c -------------------------------------------------------------------------------- /src/icon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joewing/jwm/HEAD/src/icon.h -------------------------------------------------------------------------------- /src/image.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joewing/jwm/HEAD/src/image.c -------------------------------------------------------------------------------- /src/image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joewing/jwm/HEAD/src/image.h -------------------------------------------------------------------------------- /src/jwm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joewing/jwm/HEAD/src/jwm.h -------------------------------------------------------------------------------- /src/jxlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joewing/jwm/HEAD/src/jxlib.h -------------------------------------------------------------------------------- /src/lex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joewing/jwm/HEAD/src/lex.c -------------------------------------------------------------------------------- /src/lex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joewing/jwm/HEAD/src/lex.h -------------------------------------------------------------------------------- /src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joewing/jwm/HEAD/src/main.c -------------------------------------------------------------------------------- /src/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joewing/jwm/HEAD/src/main.h -------------------------------------------------------------------------------- /src/match.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joewing/jwm/HEAD/src/match.c -------------------------------------------------------------------------------- /src/match.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joewing/jwm/HEAD/src/match.h -------------------------------------------------------------------------------- /src/menu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joewing/jwm/HEAD/src/menu.c -------------------------------------------------------------------------------- /src/menu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joewing/jwm/HEAD/src/menu.h -------------------------------------------------------------------------------- /src/misc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joewing/jwm/HEAD/src/misc.c -------------------------------------------------------------------------------- /src/misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joewing/jwm/HEAD/src/misc.h -------------------------------------------------------------------------------- /src/move.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joewing/jwm/HEAD/src/move.c -------------------------------------------------------------------------------- /src/move.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joewing/jwm/HEAD/src/move.h -------------------------------------------------------------------------------- /src/outline.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joewing/jwm/HEAD/src/outline.c -------------------------------------------------------------------------------- /src/outline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joewing/jwm/HEAD/src/outline.h -------------------------------------------------------------------------------- /src/pager.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joewing/jwm/HEAD/src/pager.c -------------------------------------------------------------------------------- /src/pager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joewing/jwm/HEAD/src/pager.h -------------------------------------------------------------------------------- /src/parse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joewing/jwm/HEAD/src/parse.c -------------------------------------------------------------------------------- /src/parse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joewing/jwm/HEAD/src/parse.h -------------------------------------------------------------------------------- /src/place.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joewing/jwm/HEAD/src/place.c -------------------------------------------------------------------------------- /src/place.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joewing/jwm/HEAD/src/place.h -------------------------------------------------------------------------------- /src/popup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joewing/jwm/HEAD/src/popup.c -------------------------------------------------------------------------------- /src/popup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joewing/jwm/HEAD/src/popup.h -------------------------------------------------------------------------------- /src/render.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joewing/jwm/HEAD/src/render.c -------------------------------------------------------------------------------- /src/render.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joewing/jwm/HEAD/src/render.h -------------------------------------------------------------------------------- /src/resize.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joewing/jwm/HEAD/src/resize.c -------------------------------------------------------------------------------- /src/resize.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joewing/jwm/HEAD/src/resize.h -------------------------------------------------------------------------------- /src/root.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joewing/jwm/HEAD/src/root.c -------------------------------------------------------------------------------- /src/root.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joewing/jwm/HEAD/src/root.h -------------------------------------------------------------------------------- /src/screen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joewing/jwm/HEAD/src/screen.c -------------------------------------------------------------------------------- /src/screen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joewing/jwm/HEAD/src/screen.h -------------------------------------------------------------------------------- /src/settings.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joewing/jwm/HEAD/src/settings.c -------------------------------------------------------------------------------- /src/settings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joewing/jwm/HEAD/src/settings.h -------------------------------------------------------------------------------- /src/spacer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joewing/jwm/HEAD/src/spacer.c -------------------------------------------------------------------------------- /src/spacer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joewing/jwm/HEAD/src/spacer.h -------------------------------------------------------------------------------- /src/status.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joewing/jwm/HEAD/src/status.c -------------------------------------------------------------------------------- /src/status.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joewing/jwm/HEAD/src/status.h -------------------------------------------------------------------------------- /src/swallow.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joewing/jwm/HEAD/src/swallow.c -------------------------------------------------------------------------------- /src/swallow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joewing/jwm/HEAD/src/swallow.h -------------------------------------------------------------------------------- /src/taskbar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joewing/jwm/HEAD/src/taskbar.c -------------------------------------------------------------------------------- /src/taskbar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joewing/jwm/HEAD/src/taskbar.h -------------------------------------------------------------------------------- /src/timing.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joewing/jwm/HEAD/src/timing.c -------------------------------------------------------------------------------- /src/timing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joewing/jwm/HEAD/src/timing.h -------------------------------------------------------------------------------- /src/tray.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joewing/jwm/HEAD/src/tray.c -------------------------------------------------------------------------------- /src/tray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joewing/jwm/HEAD/src/tray.h -------------------------------------------------------------------------------- /src/traybutton.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joewing/jwm/HEAD/src/traybutton.c -------------------------------------------------------------------------------- /src/traybutton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joewing/jwm/HEAD/src/traybutton.h -------------------------------------------------------------------------------- /src/winmenu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joewing/jwm/HEAD/src/winmenu.c -------------------------------------------------------------------------------- /src/winmenu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joewing/jwm/HEAD/src/winmenu.h -------------------------------------------------------------------------------- /xslt/jwm-2.3.xslt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joewing/jwm/HEAD/xslt/jwm-2.3.xslt -------------------------------------------------------------------------------- /xslt/jwm-2.4.xslt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joewing/jwm/HEAD/xslt/jwm-2.4.xslt --------------------------------------------------------------------------------