aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/Internal/Keys.hs8
-rw-r--r--src/Main.hs2
2 files changed, 8 insertions, 2 deletions
diff --git a/src/Internal/Keys.hs b/src/Internal/Keys.hs
index c40c346..d03557c 100644
--- a/src/Internal/Keys.hs
+++ b/src/Internal/Keys.hs
@@ -441,12 +441,18 @@ mouseMap = runButtons $ do
forM_ (map fst mediaButtons) $ \b ->
bind b $ noMod $ continuous mediaButtons b
+ bind button13 $ noMod $ subMouse $ do
+ bind button1 $ noMod mouseMoveWindow
+ bind button3 $ noMod mouseResizeWindow
+ bind button13 $ noMod $ windows . W.sink
+
+
bind button15 $ do
noMod $ subMouse $ do
bind button15 $ do
- noMod $ \_ -> jumpToLast
+ noMod $ const jumpToLast
let workspaceButtons = [
diff --git a/src/Main.hs b/src/Main.hs
index 19050ab..379131c 100644
--- a/src/Main.hs
+++ b/src/Main.hs
@@ -36,7 +36,7 @@ main = do
(=<<) X.xmonad $
applyKeys $ ewmh $ docks $ windowHooks (composeAll [
- className =? "Google-chrome" --> composeAll [
+ (className =? "Google-chrome" <||> className =? "Brave-browser") --> composeAll [
-- The geniuses that made chrome decided that Ctrl+W should kill
-- the current tab! This makes it consistent with the rest of the
-- world ... ctrl+w deletes the last word (ctrl+backspace).