Package: xmonad Version: 0.4-1 Severity: normal Tags: patch
I use urxvt, and when first time run xmonad, cannot run terminal by shift-mod-enter.. And mplayer in Debian with default settings not floats.. -- System Information: Debian Release: lenny/sid APT prefers testing APT policy: (990, 'testing'), (500, 'unstable'), (500, 'stable'), (1, 'experimental') Architecture: i386 (i686) Kernel: Linux 2.6.21-ck2 Locale: LANG=ru_RU.UTF-8, LC_CTYPE=ru_RU.UTF-8 (charmap=UTF-8) Shell: /bin/sh linked to /bin/bash Versions of packages xmonad depends on: ii libc6 2.6.1-1+b1 GNU C Library: Shared libraries ii libgmp3c2 2:4.2.2+dfsg-1 Multiprecision arithmetic library ii libx11-6 2:1.0.3-7 X11 client-side library ii libxext6 1:1.0.3-2 X11 miscellaneous extension librar ii libxinerama1 1:1.0.2-1 X11 Xinerama extension library Versions of packages xmonad recommends: ii xmonad-rebuild 0.4-1 Recompiler for xmonad -- no debconf information
--- Config.hs.orig 2007-10-25 04:00:45.000000000 +0200 +++ Config.hs 2007-10-25 04:02:11.000000000 +0200 @@ -108,7 +109,7 @@ -- Always float various programs: manageHook w _ _ c | c `elem` floats = fmap (W.float w . snd) (floatLocation w) - where floats = ["MPlayer", "Gimp"] + where floats = ["MPlayer", "mplayer", "Gimp", "feh", "XXkb"] -- Desktop panels and dock apps should be ignored by xmonad: manageHook w _ n _ | n `elem` ignore = reveal w >> return (W.delete w) @@ -185,7 +186,7 @@ keys :: M.Map (KeyMask, KeySym) (X ()) keys = M.fromList $ -- launching and killing programs - [ ((modMask .|. shiftMask, xK_Return), spawn "xterm") -- %! Launch an xterm + [ ((modMask .|. shiftMask, xK_Return), spawn "x-terminal-emulator") -- %! Launch an xterm , ((modMask, xK_p ), spawn "exe=`dmenu_path | dmenu` && eval \"exec $exe\"") -- %! Launch dmenu , ((modMask .|. shiftMask, xK_p ), spawn "gmrun") -- %! Launch gmrun , ((modMask .|. shiftMask, xK_c ), kill) -- %! Close the focused window