├── autogen.sh ├── po ├── LINGUAS ├── quot.sed ├── boldquot.sed ├── remove-potcdate.sin ├── insert-header.sin ├── POTFILES.in ├── en@quot.header ├── en@boldquot.header └── Makevars ├── contrib ├── CREDITS ├── jwm-blue.svg ├── jwm-gray.svg ├── jwm-orange.svg ├── jwm-red.svg ├── Makefile.in └── jwm.xbm ├── doc-footer.shtml ├── .gitignore ├── src ├── grab.h ├── default.h ├── help.h ├── spacer.h ├── match.h ├── outline.h ├── grab.c ├── parse.h ├── pager.h ├── match.c ├── move.h ├── background.h ├── resize.h ├── confirm.h ├── gradient.h ├── popup.h ├── error.h ├── winmenu.h ├── main.h ├── status.h ├── Makefile.in ├── clock.h ├── render.h ├── outline.c ├── command.h ├── timing.h ├── swallow.h ├── screen.h ├── clientlist.h ├── dock.h ├── traybutton.h ├── taskbar.h ├── image.h ├── button.h ├── root.h ├── spacer.c ├── font.h ├── default.c ├── event.h ├── desktop.h ├── help.c ├── binding.h ├── cursor.h ├── gradient.c ├── misc.h ├── timing.c ├── error.c ├── place.h ├── debug.h ├── border.h ├── screen.c ├── action.h ├── lex.h ├── jwm.h ├── icon.h ├── color.h ├── settings.c ├── settings.h ├── menu.h ├── group.h ├── status.c ├── action.c ├── render.c ├── command.c ├── cursor.c ├── root.c ├── misc.c ├── clientlist.c ├── button.c └── popup.c ├── doc-header.shtml ├── LICENSE ├── README.md ├── Makefile.in ├── README.upgrading ├── CONTRIBUTING.md └── xslt ├── jwm-2.4.xslt └── jwm-2.3.xslt /autogen.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | aclocal 3 | automake -ac 4 | autoreconf -fi 5 | touch config.rpath 6 | -------------------------------------------------------------------------------- /po/LINGUAS: -------------------------------------------------------------------------------- 1 | da 2 | de 3 | es 4 | fr 5 | hu 6 | it 7 | lt 8 | nl 9 | pl 10 | pt 11 | pt_BR 12 | ru 13 | zh_CN 14 | zh_TW 15 | -------------------------------------------------------------------------------- /po/quot.sed: -------------------------------------------------------------------------------- 1 | s/"\([^"]*\)"/“\1”/g 2 | s/`\([^`']*\)'/‘\1’/g 3 | s/ '\([^`']*\)' / ‘\1’ /g 4 | s/ '\([^`']*\)'$/ ‘\1’/g 5 | s/^'\([^`']*\)' /‘\1’ /g 6 | s/“”/""/g 7 | -------------------------------------------------------------------------------- /contrib/CREDITS: -------------------------------------------------------------------------------- 1 | Original logo design: Vitor Lopes (@vmnlopes) 2 | Original SVG logo: Israel (@Israel-) 3 | Minified SVG logo: @technosaurus 4 | XBM logo: Mick Amadio (@01micko) 5 | -------------------------------------------------------------------------------- /po/boldquot.sed: -------------------------------------------------------------------------------- 1 | s/"\([^"]*\)"/“\1”/g 2 | s/`\([^`']*\)'/‘\1’/g 3 | s/ '\([^`']*\)' / ‘\1’ /g 4 | s/ '\([^`']*\)'$/ ‘\1’/g 5 | s/^'\([^`']*\)' /‘\1’ /g 6 | s/“”/""/g 7 | s/“/“[1m/g 8 | s/”/[0m”/g 9 | s/‘/‘[1m/g 10 | s/’/[0m’/g 11 | -------------------------------------------------------------------------------- /doc-footer.shtml: -------------------------------------------------------------------------------- 1 | 2 |
4 | joewing.net / 5 | Projects / 6 | JWM 7 |
8 |