aboutsummaryrefslogtreecommitdiff
path: root/src/Internal/Keys.hs
Commit message (Collapse)AuthorAge
* Add ButtonMasks. Not function. Experimental to try and handle dealing with ↵experimental_mouse_maskJosh Rahm2022-04-01
| | | | multiple buttons as masks.
* More experimental MouseMotionJosh Rahm2022-04-01
|
* Add a bunch more documentation and ability to see that documentationJosh Rahm2022-03-31
|
* basic ability teo generate configJosh Rahm2022-03-30
|
* Starting new branch to experimentally add documentation to KeyBindings.Josh Rahm2022-03-30
| | | | | | | | | | | | | | | | | | | | The hope is to get to a point where documentation can be automatically generated for key bindings, while keeping as much of the existing DSL unchanged as possible. The goal is to have something like: bind xK_h $ do doc "Set focus to the next window in the stack" justMod nextWindow doc "Swap this window with the next window in the stack." shiftMod shiftNextWindow Then "theoretically" a markdown/latex/text file can be generated with documentation for each of those bindings and have the documentation automatically update if the keys change.
* --amendJosh Rahm2022-03-29
|
* Fixed bug where multiple configures would override previous configures for ↵Josh Rahm2022-03-29
| | | | window-specific bindings
* Remove trailing whitespaceJosh Rahm2022-03-29
|
* Add a DSL for configuring Window-Specific bindings and move it into the ↵Josh Rahm2022-03-29
| | | | Keys.hs file.
* Fix things that Hlint is complaining about.Josh Rahm2022-03-28
|
* add swallow behavior. Add more Chrome bindings.Josh Rahm2022-03-28
|
* Add (some) ability to send keys to other windowsJosh Rahm2022-03-28
|
* Remove the bindings from the old mouse. Now I have a better, more ↵Josh Rahm2022-03-28
| | | | programmable mouse I can use.
* Move Intercept to RebindKeys. Remove the intercept subsystem as it was ↵Josh Rahm2022-03-28
| | | | experimental and I do not have a real use for it anymore.
* Merge branch 'v017' of josher.dev:rde into v017Josh Rahm2022-03-28
|\
| * Merge branch 'v017' of git.josher.dev:rde into v017Josh Rahm2022-03-28
| |\
| * \ Merge branch 'v017' of git.josher.dev:rde into v017Josh Rahm2022-03-21
| |\ \
| * | | Add set backlight keys. Have not yet committed the set-backlight.sh script yetJosh Rahm2022-02-11
| | | |
* | | | Add Brave to list of browsers to intercept keystrokes. Add mouse bindingns ↵Josh Rahm2022-03-28
| |_|/ |/| | | | | | | | | | | | | | | | | | | | for dragging and resizing. button13+LeftMouse = Drag button13+RightMouse = Resize button13+button13 = retile
* | | Added a way to do per-window bindings in XMonad.Josh Rahm2022-03-25
| | | | | | | | | | | | | | | | | | This is particularly great for Chrome where one cannot remap the built-in bindings and some built-in bindings are really dumb (looking at you Ctrl+w!!).
* | | Add more mouse motions. Add bindings for navigation to button15+<>Josh Rahm2022-03-24
| |/ |/|
* | Add experimental motion events. Not super useful at the moment, but might be ↵Josh Rahm2022-03-18
| | | | | | | | in the future.
* | Ability to submap the mouse. Added bindings for my Logitech G502 Hero.Josh Rahm2022-03-18
|/
* add more emoticons. Fix emoticon script.Josh Rahm2022-01-16
|
* Added ability to control volume with <C-v>hhhh* and <C-v><C-llll*Josh Rahm2022-01-13
|
* Added library-view.sh and bound it to <C-z>oJosh Rahm2022-01-13
|
* Fix so that <S--> shrinks the alt window, not expand itJosh Rahm2022-01-11
|
* Better Rofi integrationJosh Rahm2022-01-11
|
* Add emoticon-select.Josh Rahm2022-01-10
| | | | | | It's the same as emoji select, but with emoticons. Key bound to <C-z>E (capital E, as opposed to <C-z>e for emojis)
* Add script to set the PulseAudio sink for the current window.Josh Rahm2022-01-10
| | | | | | | | | This binding is set to <C-z>a. It creates a dmenu prompting the user to select which output device the current application should send audio to. In the future I might create an analog for input devices, but as things stand, I change input so much more infrequently that pavucontrol is probably fine for that.
* Fix sending the SIGUSR to Xmobar syntaxJosh Rahm2022-01-10
|
* Added Emoji select.Josh Rahm2021-11-29
| | | | | | The fonts still leave much to be desired. Unfortunately dmenu2 does not support fallback fonts from what I can tell, and dmenu1 doesn't support all the nice features dmenu2 supports. Oh well.
* Add some changes.Josh Rahm2021-11-29
| | | | | | | 1. Make the spotify control work for both Spotify and Spotifyd 2. Xmobar weather not break xmobar when not connected to the internet 3. Add g<space> keybinding to go to the toogle-cased version of the current workspace.
* Added ability to submap based on the lookupString.Josh Rahm2021-11-23
| | | | | | This changes how workspaces work. There are now as many workspaces as there are AlphaNumeric characters. I'm not really sure how I like it, but it's interesting. I'll keep it for a bit and see how I like it.
* Add some support of the XF86 keys.Josh Rahm2021-11-22
|
* Added a couple of bindings.Josh Rahm2021-11-22
|
* Mess with some other keybindings.Josh Rahm2021-11-22
|
* Delete newMouse. It's not used.Josh Rahm2021-11-22
|
* Compeletely change how KeyBindings are done.Josh Rahm2021-11-22
| | | | | | | | | | | | | | | | | | | | | | | | Created new KeysM and ButtonsM monads to make configuring keybindings and button bindings more readable through a DSL. Before bindings would just be a giant list, but that made it difficult to read and repetitive. Now the syntax follows the pattern bind key-to-bind mask1 : action mask2 : action i.e. bind xK_a $ do justMod $ doSomeAction a b c shiftMod $ doSomeOtherAction a b c This makes it a lot cleaner to see all the bindings allocated to a specific key. That way, when adding a new binding, I can easily see what bindings already exist for that key.
* Fix bug where moving window to workspace stopped working.Josh Rahm2021-11-22
|
* Add keybindings toJosh Rahm2021-11-22
| | | | | - Copy window to another Workspace. - Launch a floating terminal.
* Change swapMaster.Josh Rahm2021-11-12
| | | | | Swap master now swaps the master window with the prior master window if swapMaster is called while the master window is focused.
* Use XMonad's EtensibleStateJosh Rahm2021-11-12
| | | | | Change the Marking to use XMonad's extensible state rather than hand-rolling it myself. Allowed me to delete the XPlus monad.
* Minor changes to xmobar. C-S-q now restarts xmonad.Josh Rahm2021-11-10
|
* Add new Corner layout to keep the master window in the corner.Josh Rahm2021-11-05
| | | | | As a part of this add the Rotatable layout modifier that can rotate the windows 90 degrees using Shift+Mod+r.
* Change keys to use mod+shift+/- to change the size for Mosaic.Josh Rahm2021-11-04
|
* Change the strut behavior.Josh Rahm2021-11-03
| | | | | It wasn't working as expected for flips. This is because the avoidStructs layout modifier was too low in the layout stack.
* Add ability to truncate xmobar output.Josh Rahm2021-11-03
| | | | | | | | This is done by removing all visible characters after a certain point. Right now that's set to 70, which was found just via trial-and-error. This will break if something has '>' or '<' and this will not be able to handle xmobar's 'raw' tag, but it's good enough.
* Added MosaicAlt Layout. Changed weather icon to use moon icon for 'clear'Josh Rahm2021-11-03
|
* Add ability to flip the layout with mod-f.Josh Rahm2021-11-02
|