diff options
Diffstat (limited to 'XMonad')
-rw-r--r-- | XMonad/Config/Gnome.hs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/XMonad/Config/Gnome.hs b/XMonad/Config/Gnome.hs index 2b7105e..64b01fa 100644 --- a/XMonad/Config/Gnome.hs +++ b/XMonad/Config/Gnome.hs @@ -37,7 +37,8 @@ gnomeConfig = desktopConfig , keys = \c -> gnomeKeys c `M.union` keys desktopConfig c } gnomeKeys (XConfig {modMask = modm}) = M.fromList $ - [ ((modm, xK_p), gnomeRun) ] + [ ((modm, xK_p), gnomeRun) + , ((modm .|. shiftMask, xK_q), spawn "gnome-session-save --kill") ] -- | Launch the "Run Application" dialog. gnome-panel must be running for this -- to work. |