From f095dffe5b658091e442805636ea6db98025fcd3 Mon Sep 17 00:00:00 2001 From: Lars Vierbergen Date: Thu, 12 Jan 2017 20:08:52 +0100 Subject: [PATCH] Add screen select screenshot with Alt+PrtSc --- xmonad.hs | 1 + 1 file changed, 1 insertion(+) diff --git a/xmonad.hs b/xmonad.hs index b324591..6cbdab5 100644 --- a/xmonad.hs +++ b/xmonad.hs @@ -86,6 +86,7 @@ main = do -- , ((modMask baseConfig, xK_r), spawn "~/.xmonad/action-manager/command.sh redshift ~/.xmonad/actioncontrol") -- , ((modMask baseConfig, xK_e), spawn "caja") , ((0, xK_Print), spawn "scrot") + , ((mod1Mask, xK_Print), spawn "scrot -s") -- Normal Alt-Tab behavior , ((mod1Mask, xK_Tab ), windows W.focusDown) -- %! Move focus to the next window , ((mod1Mask .|. shiftMask, xK_Tab ), windows W.focusUp ) -- %! Move focus to the previous window