Xfce: Difference between revisions

imported>Mucaho
Added troubleshooting entry for running Java applications on xmonad (and best approach when combined with xfce)
imported>Typetetris
desktopManager.default and windowManager.default are deprecated. Sadly I don't know the session string for the xfce only example otherwise I would have changed that too.
Line 72: Line 72:
     enable = true;   
     enable = true;   
     desktopManager = {
     desktopManager = {
      default = "xfce";
       xterm.enable = false;
       xterm.enable = false;
       xfce = {
       xfce = {
Line 81: Line 80:
     };
     };
     windowManager = {
     windowManager = {
      default = "xmonad";
       xmonad = {
       xmonad = {
         enable = true;
         enable = true;
Line 92: Line 90:
       };
       };
     };
     };
    displayManager.defaultSession = "xfce+xmonad";
   };
   };
   ...
   ...