diff options
| author | Josh Rahm <joshuarahm@gmail.com> | 2022-03-28 00:24:45 -0600 |
|---|---|---|
| committer | Josh Rahm <joshuarahm@gmail.com> | 2022-03-28 00:24:45 -0600 |
| commit | 16661c33c638cc6b1aad5095e12f94e64d2a6bec (patch) | |
| tree | fcfbd415e334f6dd85a60aa3eaf79ad6d5533733 /src/Main.hs | |
| parent | 4b1adef5afe4748c2f9d9362baff71a44428b902 (diff) | |
| download | rde-16661c33c638cc6b1aad5095e12f94e64d2a6bec.tar.gz rde-16661c33c638cc6b1aad5095e12f94e64d2a6bec.tar.bz2 rde-16661c33c638cc6b1aad5095e12f94e64d2a6bec.zip | |
Add Brave to list of browsers to intercept keystrokes. Add mouse bindingns for dragging and resizing.
button13+LeftMouse = Drag
button13+RightMouse = Resize
button13+button13 = retile
Diffstat (limited to 'src/Main.hs')
| -rw-r--r-- | src/Main.hs | 2 |
1 files changed, 1 insertions, 1 deletions
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). |