├── .gitignore ├── .mlvwm ├── .Xdefaults ├── .initrc ├── .mlvwmrc ├── .restartrc ├── MenuBar ├── MenuExtras │ ├── Gromit-MPX │ ├── X11 │ ├── mlclock │ ├── oclock │ ├── xload │ └── xmem ├── VirtualDesktops ├── Xresources │ ├── oclock │ └── xclock ├── apps │ ├── .AppsManifest │ ├── 0ad │ ├── BasiliskII │ ├── HandBrake │ ├── Xephyr │ ├── XpdfReader │ ├── arandr │ ├── audacity │ ├── chrome │ ├── claws-mail │ ├── clementine │ ├── cool-retro-term │ ├── firefox │ ├── godot │ ├── gxmessage │ ├── krita │ ├── links │ ├── meld │ ├── mpv │ ├── netsurf │ ├── pcmanfm │ ├── qemu │ ├── remmina │ ├── retroarch │ ├── scummvm │ ├── vlc │ ├── xarchiver │ ├── xcalc │ ├── xclock │ ├── xload │ ├── xmag │ ├── xmessage │ ├── xosview │ ├── xterm │ ├── xwf │ ├── zeal │ └── zutty ├── pixmap │ ├── apple.xpm │ ├── apple8.xpm │ ├── balloon.xpm │ ├── clementine.xpm │ ├── finder.xpm │ ├── handbrake.xpm │ ├── krita.xpm │ ├── meld.xpm │ ├── pencil.xpm │ ├── remmina.xpm │ ├── retroarch.xpm │ ├── xarchiver.xpm │ └── xosview.xpm └── themes │ ├── MacOS8 │ ├── MacOS9 │ └── System7 ├── CONTRIBUTING.md ├── Makefile ├── README.md └── bin ├── mlvwm-alert ├── mlvwm-confirm ├── mlvwm-message ├── mlvwm-powerdown ├── mlvwm-restart └── mlvwm-screenshot /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgant/mlvwmrc/HEAD/.gitignore -------------------------------------------------------------------------------- /.mlvwm/.Xdefaults: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgant/mlvwmrc/HEAD/.mlvwm/.Xdefaults -------------------------------------------------------------------------------- /.mlvwm/.initrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgant/mlvwmrc/HEAD/.mlvwm/.initrc -------------------------------------------------------------------------------- /.mlvwm/.mlvwmrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgant/mlvwmrc/HEAD/.mlvwm/.mlvwmrc -------------------------------------------------------------------------------- /.mlvwm/.restartrc: -------------------------------------------------------------------------------- 1 | RestartFunction 2 | END -------------------------------------------------------------------------------- /.mlvwm/MenuBar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgant/mlvwmrc/HEAD/.mlvwm/MenuBar -------------------------------------------------------------------------------- /.mlvwm/MenuExtras/Gromit-MPX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgant/mlvwmrc/HEAD/.mlvwm/MenuExtras/Gromit-MPX -------------------------------------------------------------------------------- /.mlvwm/MenuExtras/X11: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgant/mlvwmrc/HEAD/.mlvwm/MenuExtras/X11 -------------------------------------------------------------------------------- /.mlvwm/MenuExtras/mlclock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgant/mlvwmrc/HEAD/.mlvwm/MenuExtras/mlclock -------------------------------------------------------------------------------- /.mlvwm/MenuExtras/oclock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgant/mlvwmrc/HEAD/.mlvwm/MenuExtras/oclock -------------------------------------------------------------------------------- /.mlvwm/MenuExtras/xload: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgant/mlvwmrc/HEAD/.mlvwm/MenuExtras/xload -------------------------------------------------------------------------------- /.mlvwm/MenuExtras/xmem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgant/mlvwmrc/HEAD/.mlvwm/MenuExtras/xmem -------------------------------------------------------------------------------- /.mlvwm/VirtualDesktops: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgant/mlvwmrc/HEAD/.mlvwm/VirtualDesktops -------------------------------------------------------------------------------- /.mlvwm/Xresources/oclock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgant/mlvwmrc/HEAD/.mlvwm/Xresources/oclock -------------------------------------------------------------------------------- /.mlvwm/Xresources/xclock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgant/mlvwmrc/HEAD/.mlvwm/Xresources/xclock -------------------------------------------------------------------------------- /.mlvwm/apps/.AppsManifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgant/mlvwmrc/HEAD/.mlvwm/apps/.AppsManifest -------------------------------------------------------------------------------- /.mlvwm/apps/0ad: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgant/mlvwmrc/HEAD/.mlvwm/apps/0ad -------------------------------------------------------------------------------- /.mlvwm/apps/BasiliskII: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgant/mlvwmrc/HEAD/.mlvwm/apps/BasiliskII -------------------------------------------------------------------------------- /.mlvwm/apps/HandBrake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgant/mlvwmrc/HEAD/.mlvwm/apps/HandBrake -------------------------------------------------------------------------------- /.mlvwm/apps/Xephyr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgant/mlvwmrc/HEAD/.mlvwm/apps/Xephyr -------------------------------------------------------------------------------- /.mlvwm/apps/XpdfReader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgant/mlvwmrc/HEAD/.mlvwm/apps/XpdfReader -------------------------------------------------------------------------------- /.mlvwm/apps/arandr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgant/mlvwmrc/HEAD/.mlvwm/apps/arandr -------------------------------------------------------------------------------- /.mlvwm/apps/audacity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgant/mlvwmrc/HEAD/.mlvwm/apps/audacity -------------------------------------------------------------------------------- /.mlvwm/apps/chrome: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgant/mlvwmrc/HEAD/.mlvwm/apps/chrome -------------------------------------------------------------------------------- /.mlvwm/apps/claws-mail: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgant/mlvwmrc/HEAD/.mlvwm/apps/claws-mail -------------------------------------------------------------------------------- /.mlvwm/apps/clementine: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgant/mlvwmrc/HEAD/.mlvwm/apps/clementine -------------------------------------------------------------------------------- /.mlvwm/apps/cool-retro-term: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgant/mlvwmrc/HEAD/.mlvwm/apps/cool-retro-term -------------------------------------------------------------------------------- /.mlvwm/apps/firefox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgant/mlvwmrc/HEAD/.mlvwm/apps/firefox -------------------------------------------------------------------------------- /.mlvwm/apps/godot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgant/mlvwmrc/HEAD/.mlvwm/apps/godot -------------------------------------------------------------------------------- /.mlvwm/apps/gxmessage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgant/mlvwmrc/HEAD/.mlvwm/apps/gxmessage -------------------------------------------------------------------------------- /.mlvwm/apps/krita: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgant/mlvwmrc/HEAD/.mlvwm/apps/krita -------------------------------------------------------------------------------- /.mlvwm/apps/links: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgant/mlvwmrc/HEAD/.mlvwm/apps/links -------------------------------------------------------------------------------- /.mlvwm/apps/meld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgant/mlvwmrc/HEAD/.mlvwm/apps/meld -------------------------------------------------------------------------------- /.mlvwm/apps/mpv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgant/mlvwmrc/HEAD/.mlvwm/apps/mpv -------------------------------------------------------------------------------- /.mlvwm/apps/netsurf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgant/mlvwmrc/HEAD/.mlvwm/apps/netsurf -------------------------------------------------------------------------------- /.mlvwm/apps/pcmanfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgant/mlvwmrc/HEAD/.mlvwm/apps/pcmanfm -------------------------------------------------------------------------------- /.mlvwm/apps/qemu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgant/mlvwmrc/HEAD/.mlvwm/apps/qemu -------------------------------------------------------------------------------- /.mlvwm/apps/remmina: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgant/mlvwmrc/HEAD/.mlvwm/apps/remmina -------------------------------------------------------------------------------- /.mlvwm/apps/retroarch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgant/mlvwmrc/HEAD/.mlvwm/apps/retroarch -------------------------------------------------------------------------------- /.mlvwm/apps/scummvm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgant/mlvwmrc/HEAD/.mlvwm/apps/scummvm -------------------------------------------------------------------------------- /.mlvwm/apps/vlc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgant/mlvwmrc/HEAD/.mlvwm/apps/vlc -------------------------------------------------------------------------------- /.mlvwm/apps/xarchiver: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgant/mlvwmrc/HEAD/.mlvwm/apps/xarchiver -------------------------------------------------------------------------------- /.mlvwm/apps/xcalc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgant/mlvwmrc/HEAD/.mlvwm/apps/xcalc -------------------------------------------------------------------------------- /.mlvwm/apps/xclock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgant/mlvwmrc/HEAD/.mlvwm/apps/xclock -------------------------------------------------------------------------------- /.mlvwm/apps/xload: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgant/mlvwmrc/HEAD/.mlvwm/apps/xload -------------------------------------------------------------------------------- /.mlvwm/apps/xmag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgant/mlvwmrc/HEAD/.mlvwm/apps/xmag -------------------------------------------------------------------------------- /.mlvwm/apps/xmessage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgant/mlvwmrc/HEAD/.mlvwm/apps/xmessage -------------------------------------------------------------------------------- /.mlvwm/apps/xosview: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgant/mlvwmrc/HEAD/.mlvwm/apps/xosview -------------------------------------------------------------------------------- /.mlvwm/apps/xterm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgant/mlvwmrc/HEAD/.mlvwm/apps/xterm -------------------------------------------------------------------------------- /.mlvwm/apps/xwf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgant/mlvwmrc/HEAD/.mlvwm/apps/xwf -------------------------------------------------------------------------------- /.mlvwm/apps/zeal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgant/mlvwmrc/HEAD/.mlvwm/apps/zeal -------------------------------------------------------------------------------- /.mlvwm/apps/zutty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgant/mlvwmrc/HEAD/.mlvwm/apps/zutty -------------------------------------------------------------------------------- /.mlvwm/pixmap/apple.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgant/mlvwmrc/HEAD/.mlvwm/pixmap/apple.xpm -------------------------------------------------------------------------------- /.mlvwm/pixmap/apple8.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgant/mlvwmrc/HEAD/.mlvwm/pixmap/apple8.xpm -------------------------------------------------------------------------------- /.mlvwm/pixmap/balloon.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgant/mlvwmrc/HEAD/.mlvwm/pixmap/balloon.xpm -------------------------------------------------------------------------------- /.mlvwm/pixmap/clementine.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgant/mlvwmrc/HEAD/.mlvwm/pixmap/clementine.xpm -------------------------------------------------------------------------------- /.mlvwm/pixmap/finder.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgant/mlvwmrc/HEAD/.mlvwm/pixmap/finder.xpm -------------------------------------------------------------------------------- /.mlvwm/pixmap/handbrake.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgant/mlvwmrc/HEAD/.mlvwm/pixmap/handbrake.xpm -------------------------------------------------------------------------------- /.mlvwm/pixmap/krita.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgant/mlvwmrc/HEAD/.mlvwm/pixmap/krita.xpm -------------------------------------------------------------------------------- /.mlvwm/pixmap/meld.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgant/mlvwmrc/HEAD/.mlvwm/pixmap/meld.xpm -------------------------------------------------------------------------------- /.mlvwm/pixmap/pencil.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgant/mlvwmrc/HEAD/.mlvwm/pixmap/pencil.xpm -------------------------------------------------------------------------------- /.mlvwm/pixmap/remmina.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgant/mlvwmrc/HEAD/.mlvwm/pixmap/remmina.xpm -------------------------------------------------------------------------------- /.mlvwm/pixmap/retroarch.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgant/mlvwmrc/HEAD/.mlvwm/pixmap/retroarch.xpm -------------------------------------------------------------------------------- /.mlvwm/pixmap/xarchiver.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgant/mlvwmrc/HEAD/.mlvwm/pixmap/xarchiver.xpm -------------------------------------------------------------------------------- /.mlvwm/pixmap/xosview.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgant/mlvwmrc/HEAD/.mlvwm/pixmap/xosview.xpm -------------------------------------------------------------------------------- /.mlvwm/themes/MacOS8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgant/mlvwmrc/HEAD/.mlvwm/themes/MacOS8 -------------------------------------------------------------------------------- /.mlvwm/themes/MacOS9: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgant/mlvwmrc/HEAD/.mlvwm/themes/MacOS9 -------------------------------------------------------------------------------- /.mlvwm/themes/System7: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgant/mlvwmrc/HEAD/.mlvwm/themes/System7 -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgant/mlvwmrc/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgant/mlvwmrc/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgant/mlvwmrc/HEAD/README.md -------------------------------------------------------------------------------- /bin/mlvwm-alert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgant/mlvwmrc/HEAD/bin/mlvwm-alert -------------------------------------------------------------------------------- /bin/mlvwm-confirm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgant/mlvwmrc/HEAD/bin/mlvwm-confirm -------------------------------------------------------------------------------- /bin/mlvwm-message: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgant/mlvwmrc/HEAD/bin/mlvwm-message -------------------------------------------------------------------------------- /bin/mlvwm-powerdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgant/mlvwmrc/HEAD/bin/mlvwm-powerdown -------------------------------------------------------------------------------- /bin/mlvwm-restart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgant/mlvwmrc/HEAD/bin/mlvwm-restart -------------------------------------------------------------------------------- /bin/mlvwm-screenshot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/morgant/mlvwmrc/HEAD/bin/mlvwm-screenshot --------------------------------------------------------------------------------