ENH use flameshot...I like arbitrary area capture :D
This commit is contained in:
parent
5d17d78874
commit
9924692d78
10
xmonad.hs
10
xmonad.hs
|
@ -292,8 +292,10 @@ myClipboard = _myRofi ++ " -modi \"clipboard:greenclip print\" \
|
||||||
myNetSel = "networkmanager_dmenu -m -4"
|
myNetSel = "networkmanager_dmenu -m -4"
|
||||||
myWinSel = _myRofi ++ " -show window"
|
myWinSel = _myRofi ++ " -show window"
|
||||||
myDevSel = "rofi-udisks"
|
myDevSel = "rofi-udisks"
|
||||||
myScreenCap = "screencap -s" --external script
|
-- TODO this will steal focus from the current window (and puts it
|
||||||
myWindowCap = "screencap -w" --external script
|
-- in the root window?) ...need to fix
|
||||||
|
myScreenCap = "flameshot gui" --external script
|
||||||
|
-- myWindowCap = "screencap -w" --external script
|
||||||
myScreenLock = "screenlock" --external script
|
myScreenLock = "screenlock" --external script
|
||||||
|
|
||||||
showVBox = windows $ W.view myVMWorkspace
|
showVBox = windows $ W.view myVMWorkspace
|
||||||
|
@ -351,8 +353,8 @@ myKeys c =
|
||||||
mkNamedSubmap c "Actions"
|
mkNamedSubmap c "Actions"
|
||||||
[ ("M-q", addName "close window" kill1)
|
[ ("M-q", addName "close window" kill1)
|
||||||
, ("M-r", addName "run program" $ spawn myRun)
|
, ("M-r", addName "run program" $ spawn myRun)
|
||||||
, ("M-C-s", addName "capture screen" $ spawn myScreenCap)
|
, ("M-C-s", addName "capture screen area" $ spawn myScreenCap)
|
||||||
, ("M-C-S-s", addName "capture focused window" $ spawn myWindowCap)
|
-- , ("M-C-S-s", addName "capture focused window" $ spawn myWindowCap)
|
||||||
, ("M-<Delete>", addName "lock screen" $ spawn myScreenLock)
|
, ("M-<Delete>", addName "lock screen" $ spawn myScreenLock)
|
||||||
] ++
|
] ++
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue