Fixing for fullscreen flash vids

This commit is contained in:
Hunter Haugen 2009-11-18 19:49:34 +05:30
parent 9d4acf0ea2
commit b510ae65a9
2 changed files with 8 additions and 5 deletions

View file

@ -1,12 +1,12 @@
Xft.antialias: true Xft.antialias: true
URxvt*scrollBar: false URxvt*scrollBar: false
URxvt*background: rgba:0000/0000/0000/dddd URxvt*background: rgba:0000/0000/0000/aaaa
URxvt*depth: 32 URxvt*depth: 32
URxvt*foreground: #dddddd URxvt*foreground: #dddddd
#URxvt*transparent: true #URxvt*transparent: true
URxvt*transparent: false URxvt*transparent: false
#URxvt*fading: 2% #URxvt*fading: 2%
URxvt*shading: 30 #URxvt*shading: 30
#URxvt*fadeColor: grey #URxvt*fadeColor: grey
URxvt*buffered: true URxvt*buffered: true
URxvt*cursorColor: green URxvt*cursorColor: green

View file

@ -22,6 +22,8 @@ import XMonad.Actions.Warp(warpToScreen)
import XMonad.Actions.WindowBringer import XMonad.Actions.WindowBringer
import XMonad.Prompt import XMonad.Prompt
import XMonad.Util.EZConfig (additionalKeysP) import XMonad.Util.EZConfig (additionalKeysP)
import XMonad.Hooks.EwmhDesktops
import XMonad.Hooks.ManageHelpers
import XMonad.Hooks.SetWMName import XMonad.Hooks.SetWMName
import Data.Monoid import Data.Monoid
import Data.List import Data.List
@ -163,7 +165,8 @@ mManageHook = composeAll
, className =? "Gvba" --> doFloat , className =? "Gvba" --> doFloat
, className =? "Cellwriter" --> doIgnore , className =? "Cellwriter" --> doIgnore
, resource =? "desktop_window" --> doIgnore , resource =? "desktop_window" --> doIgnore
, resource =? "kdesktop" --> doIgnore ] , resource =? "kdesktop" --> doIgnore
, isFullscreen --> doFullFloat ]
-- Whether focus follows the mouse pointer. -- Whether focus follows the mouse pointer.
mFocusFollowsMouse :: Bool mFocusFollowsMouse :: Bool
@ -202,5 +205,5 @@ main = do
, layoutHook = mLayout , layoutHook = mLayout
, manageHook = mManageHook , manageHook = mManageHook
, handleEventHook = pickyFocusEventHook , handleEventHook = pickyFocusEventHook
, logHook = setWMName "LG3D" , startupHook = ewmhDesktopsStartup >> setWMName "LG3D"
} `additionalKeysP` mKeys } `additionalKeysP` mKeys