<div dir="ltr">Thanks again guys. I had some trouble with cabal-install dependencies on Mint, but would prefer stable packages anyway. Mint/Mate is now stable as long as I'm willing to start with 'xmonad --replace &' in a terminal after login. Xmonad from XDG/Login might be possible (with first two files below) if I start up a session manager and a bunch of utilities (in third file); I haven't tried. I would like to try with LXDE.<br><br><br># apt-get install xmonad libghc-xmonad-contrib-dev libghc-xmonad-dev<br><br><br>==> /usr/share/xsessions/xmonad.desktop <==<br>[Desktop Entry]<br>Name=XMonad<br>Comment=Lightweight tiling window manager<br>Exec=xmonad.start<br>Icon=xmonad.png<br>Type=XSession<br> <br> <br>==> /usr/share/applications/xmonad.start.desktop <==<br>[Desktop Entry]<br>Type=Application<br>Name=Xmonad<br>Exec=/usr/local/bin/xmonad.start<br>NoDisplay=true<br>X-GNOME-WMName=Xmonad<br>X-GNOME-Autostart-Phase=WindowManager<br>X-GNOME-Provides=windowmanager<br>X-GNOME-Autostart-Notify=true<br><br><br>==> /usr/local/bin/xmonad.start <==<br>#!/bin/bash<br>#mate-panel &<br>exec xmonad<br><br><br>==> xmonad.hs <==<br>import XMonad<br>import XMonad.Config.Desktop<br>main = xmonad $ desktopConfig {<br>                modMask = mod4Mask<br>                , terminal = "mate-terminal"<br>        }<br><br></div>