Xmonad/Using xmonad in KDE: Difference between revisions
(Disable KDE multi desktops before you begin) |
(Fixed config, changed other sections to match it) |
||
Line 16: | Line 16: | ||
== Related reading == | == Related reading == | ||
The [http://haskell.org/haskellwiki/Xmonad/Using_xmonad_in_Gnome GNOME/xmonad] page. | The [http://haskell.org/haskellwiki/Xmonad/Using_xmonad_in_Gnome GNOME/xmonad] page. Read this, really. Much of what is written there also applies to KDE, | ||
and is not repeated here. | |||
== Before you begin == | == Before you begin == | ||
Line 24: | Line 25: | ||
'''Desktop''' > '''Multiple desktops''', and set the number | '''Desktop''' > '''Multiple desktops''', and set the number | ||
of desktops to 1. | of desktops to 1. | ||
== Sample xmonad configuration for KDE == | |||
As usual, place xmonad configuration in <code>~/.xmonad/xmonad.hs</code>. | |||
This sample configuration sets up xmonad to cooperate | |||
with the KDE desktop and panel; for more details about | |||
how this works, see the Gnome page. This configuration also | |||
does the following: | |||
* uses the Windows key instead of the Alt key as "mod" for xmonad (freeing up Alt for common emacs-style key bindings in applications) | |||
* causes certain applications to launch as floating windows | |||
* automatically sends certain applications to other desktops when they launch. | |||
<haskell> | |||
import XMonad | |||
import XMonad.Hooks.ManageDocks | |||
import XMonad.Hooks.EwmhDesktops | |||
import qualified XMonad.StackSet as W | |||
main = xmonad $ defaultConfig | |||
{ manageHook = manageHook defaultConfig <+> myManageHook | |||
, logHook = ewmhDesktopsLogHook | |||
, layoutHook = avoidStruts $ layoutHook defaultConfig | |||
, modMask = mod4Mask -- use the Windows button as mod | |||
} | |||
where | |||
myManageHook = composeAll . concat $ | |||
[ [manageDocks] | |||
, [ className =? c --> doFloat | c <- myFloats] | |||
, [ title =? t --> doFloat | t <- myOtherFloats] | |||
, [ className =? c --> doF (W.shift "2") | c <- webApps] | |||
, [ className =? c --> doF (W.shift "3") | c <- ircApps] | |||
] | |||
myFloats = ["MPlayer", "Gimp"] | |||
myOtherFloats = ["alsamixer"] | |||
webApps = ["Firefox-bin", "Opera"] | |||
ircApps = ["Ksirc"] | |||
</haskell> | |||
'''Note:''' To get the class name for an application: | |||
# Open the application. | |||
# Enter the command <code>xprop | grep WM_CLASS</code> in a terminal window on the same desktop. | |||
# Click on the application window. | |||
# Read the class name in the terminal window. | |||
Thanks to everyone on [http://haskell.org/haskellwiki/IRC_channel #xmonad] | |||
for all the help in putting together | |||
this vastly improved sample xmonad configuration. | |||
== Make xmonad your window manager in KDE == | == Make xmonad your window manager in KDE == | ||
Line 40: | Line 92: | ||
by hand it may be something like <code>/home/$USER/bin/xmonad</code>. | by hand it may be something like <code>/home/$USER/bin/xmonad</code>. | ||
== | == Restart your KDE session == | ||
Now end your current KDE session and start a new one. | |||
Welcome to xmonad with KDE! | |||
== | == Tips and issues == | ||
* As in Gnome, you currently cannot switch the focus to a window by clicking on it in the task bar. Use the xmonad keys. | |||
* Also as in Gnome, it is '''very important''' not to use the xmonad <code>mod-shift-q</code> key to exit your session. Use the KDE menu or panel applet. ''How do you bind an xmonad key to exit a KDE session?'' | |||
* The KDE screensaver does not work properly with xmonad. It can lock the screen, but the screen remains blank. Until someone figures out how to fix this, you can use xscreensaver: | |||
# Disable the KDE screensaver in the KDE Control Center. | |||
# Make sure that xscreensaver is installed. | |||
# Create a symbolic link to xscreensaver in <code>~/.kde/Autostart</code>. | |||
# Create a KDE button and/or xmonad key to run the command <code>xscreensaver-command -lock</code> or <code>xscreensaver-command -activate</code>. |
Revision as of 23:07, 8 April 2008

Below configuration is for xmonad 0.5, known to work on Kubuntu

Motivation
Easier system monitoring on laptops with networking widget.
Ability to browse all programs and utitlities with desktop bar (kicker)
Easy integration of Xmonad on a system using kdm for logins
Related reading
The GNOME/xmonad page. Read this, really. Much of what is written there also applies to KDE, and is not repeated here.
Before you begin
Make sure that KDE is not configured for multiple desktops. To configure that, open the KDE Control Center, select Desktop > Multiple desktops, and set the number of desktops to 1.
Sample xmonad configuration for KDE
As usual, place xmonad configuration in ~/.xmonad/xmonad.hs
.
This sample configuration sets up xmonad to cooperate with the KDE desktop and panel; for more details about how this works, see the Gnome page. This configuration also does the following:
- uses the Windows key instead of the Alt key as "mod" for xmonad (freeing up Alt for common emacs-style key bindings in applications)
- causes certain applications to launch as floating windows
- automatically sends certain applications to other desktops when they launch.
import XMonad
import XMonad.Hooks.ManageDocks
import XMonad.Hooks.EwmhDesktops
import qualified XMonad.StackSet as W
main = xmonad $ defaultConfig
{ manageHook = manageHook defaultConfig <+> myManageHook
, logHook = ewmhDesktopsLogHook
, layoutHook = avoidStruts $ layoutHook defaultConfig
, modMask = mod4Mask -- use the Windows button as mod
}
where
myManageHook = composeAll . concat $
[ [manageDocks]
, [ className =? c --> doFloat | c <- myFloats]
, [ title =? t --> doFloat | t <- myOtherFloats]
, [ className =? c --> doF (W.shift "2") | c <- webApps]
, [ className =? c --> doF (W.shift "3") | c <- ircApps]
]
myFloats = ["MPlayer", "Gimp"]
myOtherFloats = ["alsamixer"]
webApps = ["Firefox-bin", "Opera"]
ircApps = ["Ksirc"]
Note: To get the class name for an application:
- Open the application.
- Enter the command
xprop | grep WM_CLASS
in a terminal window on the same desktop. - Click on the application window.
- Read the class name in the terminal window.
Thanks to everyone on #xmonad for all the help in putting together this vastly improved sample xmonad configuration.
Make xmonad your window manager in KDE
Create the directory ~/.kde/env
if it does not
already exist. Create a file there called set_window_manager.sh
containing only the following line of text:
KDEWM=/path/to/xmonad
where "/path/to/xmonad
" is the path to the xmonad
binary on your system. For example, on Debian systems this
is /usr/bin/xmonad
, and if you compiled xmonad
by hand it may be something like /home/$USER/bin/xmonad
.
Restart your KDE session
Now end your current KDE session and start a new one. Welcome to xmonad with KDE!
Tips and issues
- As in Gnome, you currently cannot switch the focus to a window by clicking on it in the task bar. Use the xmonad keys.
- Also as in Gnome, it is very important not to use the xmonad
mod-shift-q
key to exit your session. Use the KDE menu or panel applet. How do you bind an xmonad key to exit a KDE session?
- The KDE screensaver does not work properly with xmonad. It can lock the screen, but the screen remains blank. Until someone figures out how to fix this, you can use xscreensaver:
- Disable the KDE screensaver in the KDE Control Center.
- Make sure that xscreensaver is installed.
- Create a symbolic link to xscreensaver in
~/.kde/Autostart
. - Create a KDE button and/or xmonad key to run the command
xscreensaver-command -lock
orxscreensaver-command -activate
.