├── .gitignore ├── CHANGELOG ├── CHANGELOG.jp ├── CONFIGURATION ├── CONFIGURATION.jp ├── CONTRIBUTING.md ├── FAQ.jp ├── Imakefile ├── README ├── README.jp ├── README.md ├── bitmap ├── label1 ├── label2 └── label3 ├── configure.h ├── img ├── MacOS8-1920x1080.png ├── MacOS8-640x360.png ├── System7-1920x1080.png └── System7-640x360.png ├── man ├── Imakefile └── mlvwm.man ├── mlvwm ├── Imakefile ├── Makefile.make ├── add_window.c ├── add_window.h ├── balloon.c ├── balloon.h ├── borders.c ├── borders.h ├── config.c ├── config.h ├── event.c ├── event.h ├── functions.c ├── functions.h ├── menus.c ├── menus.h ├── misc.c ├── misc.h ├── mlvwm.c ├── mlvwm.h ├── screen.h ├── sun_headers.h └── wild.c ├── pixmap ├── MailEmpty.xpm ├── MailFull.xpm ├── disk.xpm ├── label1.xpm ├── label2.xpm ├── label3.xpm └── pix_test.c └── sample_rc ├── Imakefile ├── Mlvwmrc ├── Mlvwmrc-Kterm-j ├── Mlvwmrc-Netscape ├── Mlvwmrc-Xterm └── Mlvwmrc-j /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgant/mlvwm/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgant/mlvwm/HEAD/CHANGELOG -------------------------------------------------------------------------------- /CHANGELOG.jp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgant/mlvwm/HEAD/CHANGELOG.jp -------------------------------------------------------------------------------- /CONFIGURATION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgant/mlvwm/HEAD/CONFIGURATION -------------------------------------------------------------------------------- /CONFIGURATION.jp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgant/mlvwm/HEAD/CONFIGURATION.jp -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgant/mlvwm/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /FAQ.jp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgant/mlvwm/HEAD/FAQ.jp -------------------------------------------------------------------------------- /Imakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgant/mlvwm/HEAD/Imakefile -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgant/mlvwm/HEAD/README -------------------------------------------------------------------------------- /README.jp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgant/mlvwm/HEAD/README.jp -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgant/mlvwm/HEAD/README.md -------------------------------------------------------------------------------- /bitmap/label1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgant/mlvwm/HEAD/bitmap/label1 -------------------------------------------------------------------------------- /bitmap/label2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgant/mlvwm/HEAD/bitmap/label2 -------------------------------------------------------------------------------- /bitmap/label3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgant/mlvwm/HEAD/bitmap/label3 -------------------------------------------------------------------------------- /configure.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgant/mlvwm/HEAD/configure.h -------------------------------------------------------------------------------- /img/MacOS8-1920x1080.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgant/mlvwm/HEAD/img/MacOS8-1920x1080.png -------------------------------------------------------------------------------- /img/MacOS8-640x360.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgant/mlvwm/HEAD/img/MacOS8-640x360.png -------------------------------------------------------------------------------- /img/System7-1920x1080.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgant/mlvwm/HEAD/img/System7-1920x1080.png -------------------------------------------------------------------------------- /img/System7-640x360.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgant/mlvwm/HEAD/img/System7-640x360.png -------------------------------------------------------------------------------- /man/Imakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgant/mlvwm/HEAD/man/Imakefile -------------------------------------------------------------------------------- /man/mlvwm.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgant/mlvwm/HEAD/man/mlvwm.man -------------------------------------------------------------------------------- /mlvwm/Imakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgant/mlvwm/HEAD/mlvwm/Imakefile -------------------------------------------------------------------------------- /mlvwm/Makefile.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgant/mlvwm/HEAD/mlvwm/Makefile.make -------------------------------------------------------------------------------- /mlvwm/add_window.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgant/mlvwm/HEAD/mlvwm/add_window.c -------------------------------------------------------------------------------- /mlvwm/add_window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgant/mlvwm/HEAD/mlvwm/add_window.h -------------------------------------------------------------------------------- /mlvwm/balloon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgant/mlvwm/HEAD/mlvwm/balloon.c -------------------------------------------------------------------------------- /mlvwm/balloon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgant/mlvwm/HEAD/mlvwm/balloon.h -------------------------------------------------------------------------------- /mlvwm/borders.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgant/mlvwm/HEAD/mlvwm/borders.c -------------------------------------------------------------------------------- /mlvwm/borders.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgant/mlvwm/HEAD/mlvwm/borders.h -------------------------------------------------------------------------------- /mlvwm/config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgant/mlvwm/HEAD/mlvwm/config.c -------------------------------------------------------------------------------- /mlvwm/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgant/mlvwm/HEAD/mlvwm/config.h -------------------------------------------------------------------------------- /mlvwm/event.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgant/mlvwm/HEAD/mlvwm/event.c -------------------------------------------------------------------------------- /mlvwm/event.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgant/mlvwm/HEAD/mlvwm/event.h -------------------------------------------------------------------------------- /mlvwm/functions.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgant/mlvwm/HEAD/mlvwm/functions.c -------------------------------------------------------------------------------- /mlvwm/functions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgant/mlvwm/HEAD/mlvwm/functions.h -------------------------------------------------------------------------------- /mlvwm/menus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgant/mlvwm/HEAD/mlvwm/menus.c -------------------------------------------------------------------------------- /mlvwm/menus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgant/mlvwm/HEAD/mlvwm/menus.h -------------------------------------------------------------------------------- /mlvwm/misc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgant/mlvwm/HEAD/mlvwm/misc.c -------------------------------------------------------------------------------- /mlvwm/misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgant/mlvwm/HEAD/mlvwm/misc.h -------------------------------------------------------------------------------- /mlvwm/mlvwm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgant/mlvwm/HEAD/mlvwm/mlvwm.c -------------------------------------------------------------------------------- /mlvwm/mlvwm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgant/mlvwm/HEAD/mlvwm/mlvwm.h -------------------------------------------------------------------------------- /mlvwm/screen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgant/mlvwm/HEAD/mlvwm/screen.h -------------------------------------------------------------------------------- /mlvwm/sun_headers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgant/mlvwm/HEAD/mlvwm/sun_headers.h -------------------------------------------------------------------------------- /mlvwm/wild.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgant/mlvwm/HEAD/mlvwm/wild.c -------------------------------------------------------------------------------- /pixmap/MailEmpty.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgant/mlvwm/HEAD/pixmap/MailEmpty.xpm -------------------------------------------------------------------------------- /pixmap/MailFull.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgant/mlvwm/HEAD/pixmap/MailFull.xpm -------------------------------------------------------------------------------- /pixmap/disk.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgant/mlvwm/HEAD/pixmap/disk.xpm -------------------------------------------------------------------------------- /pixmap/label1.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgant/mlvwm/HEAD/pixmap/label1.xpm -------------------------------------------------------------------------------- /pixmap/label2.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgant/mlvwm/HEAD/pixmap/label2.xpm -------------------------------------------------------------------------------- /pixmap/label3.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgant/mlvwm/HEAD/pixmap/label3.xpm -------------------------------------------------------------------------------- /pixmap/pix_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgant/mlvwm/HEAD/pixmap/pix_test.c -------------------------------------------------------------------------------- /sample_rc/Imakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgant/mlvwm/HEAD/sample_rc/Imakefile -------------------------------------------------------------------------------- /sample_rc/Mlvwmrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgant/mlvwm/HEAD/sample_rc/Mlvwmrc -------------------------------------------------------------------------------- /sample_rc/Mlvwmrc-Kterm-j: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgant/mlvwm/HEAD/sample_rc/Mlvwmrc-Kterm-j -------------------------------------------------------------------------------- /sample_rc/Mlvwmrc-Netscape: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgant/mlvwm/HEAD/sample_rc/Mlvwmrc-Netscape -------------------------------------------------------------------------------- /sample_rc/Mlvwmrc-Xterm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgant/mlvwm/HEAD/sample_rc/Mlvwmrc-Xterm -------------------------------------------------------------------------------- /sample_rc/Mlvwmrc-j: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgant/mlvwm/HEAD/sample_rc/Mlvwmrc-j --------------------------------------------------------------------------------