| Commit message (Collapse) | Author | Age | |
|---|---|---|---|
| * | Add some support of the XF86 keys. | Josh Rahm | 2022-10-09 |
| | | |||
| * | Added a couple of bindings. | Josh Rahm | 2022-10-09 |
| | | |||
| * | Mess with some other keybindings. | Josh Rahm | 2022-10-09 |
| | | |||
| * | Delete newMouse. It's not used. | Josh Rahm | 2022-10-09 |
| | | |||
| * | Compeletely change how KeyBindings are done. | Josh Rahm | 2022-10-09 |
| | | | | | | | | | | | | | | | | | | | | | | | | | 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 Rahm | 2022-10-09 |
| | | |||
| * | Add keybindings to | Josh Rahm | 2022-10-09 |
| | | | | | | - Copy window to another Workspace. - Launch a floating terminal. | ||
| * | Change marking to use greedy viewing. | Josh Rahm | 2022-10-09 |
| | | |||
| * | Change swapMaster. | Josh Rahm | 2022-10-09 |
| | | | | | | 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 EtensibleState | Josh Rahm | 2022-10-09 |
| | | | | | | Change the Marking to use XMonad's extensible state rather than hand-rolling it myself. Allowed me to delete the XPlus monad. | ||
| * | Change the next-prev keybindings to cycle through only hidden workspaces. | Josh Rahm | 2022-10-09 |
| | | | | | This keeps the other monitors stable, which I prefer. | ||
| * | Upgrade to XMonad v0.17 | Josh Rahm | 2022-10-09 |
| | | |||
| * | Minor changes to xmobar. C-S-q now restarts xmonad. | Josh Rahm | 2022-10-09 |
| | | |||
| * | minor fixes and whatnot | Josh Rahm | 2022-10-09 |
| | | |||
| * | Fix calculating position for rotation layout modifier | Josh Rahm | 2022-10-09 |
| | | |||
| * | Add new Corner layout to keep the master window in the corner. | Josh Rahm | 2022-10-09 |
| | | | | | | 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 Rahm | 2022-10-09 |
| | | |||
| * | Fix old bug. | Josh Rahm | 2022-10-09 |
| | | | | | | | Old bug where shifting workspaces relatively using mod-n/p would not work as expected where visible workspaces without any windows would be skipped over or plain not work. | ||
| * | Clean up LayoutDraw.hs | Josh Rahm | 2022-10-09 |
| | | |||
| * | Break out the XMobar logging subroutines into its own module. | Josh Rahm | 2022-10-09 |
| | | |||
| * | Remove extra log. Change trunc to be TCO-able. | Josh Rahm | 2022-10-09 |
| | | |||
| * | Fixed huuuuge bug related to dynamicLogWithPP. | Josh Rahm | 2022-10-09 |
| | | | | | | | | | | | | dynamicLogWithPP does not support Unicode properly!! It was encoding each "Char" (32 bits in Haskell, mind you!) to a utf-8 byte instead of a codepoint. The result was a butchared faux-utf8 encoded string. This was causing xmobar to crash with unicode + my truncating code. I have now moved away from dynamicLogWithPP and am writing my own log string manually. It's better this way anyway; less hacky; more fine-grained control. | ||
| * | Change the strut behavior. | Josh Rahm | 2022-10-09 |
| | | | | | | It wasn't working as expected for flips. This is because the avoidStructs layout modifier was too low in the layout stack. | ||
| * | Display stdin ellipsis only if it makes the string shorter. | Josh Rahm | 2022-10-09 |
| | | | | | i.e. would rather show 'My Title' rather than 'My Titl ...' | ||
| * | Add ability to truncate xmobar output. | Josh Rahm | 2022-10-09 |
| | | | | | | | | | 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. | ||
| * | Killed Dependency on Cairo. Vastly improved layout experience. | Josh Rahm | 2022-10-09 |
| | | |||
| * | Finally, after much wailing and gnashing of teeth, fixed the Xmobar layout ↵ | Josh Rahm | 2022-10-09 |
| | | | | | icon issue! | ||
| * | Added MosaicAlt Layout. Changed weather icon to use moon icon for 'clear' | Josh Rahm | 2022-10-09 |
| | | |||
| * | Add ability to flip the layout with mod-f. | Josh Rahm | 2022-10-09 |
| | | |||
| * | Rework keys | Josh Rahm | 2022-10-09 |
| | | | | | | | | | | | | Finally removed the buggy hjkl navigation in favor of a more traditional key bindings: - h,l move between windows like Tab and S-Tab - j,k adjust the master window size Added ability to swap current window with a marked window using S-'-<mark>. | ||
| * | Synchronize with the look on photon | Josh Rahm | 2022-10-09 |
| | | |||
| * | More XMobar sexiness. | Josh Rahm | 2022-10-09 |
| | | | | | | Revamped the install script to make it easier to handle the install process. | ||
| * | Changed how titles are parsed. | Josh Rahm | 2022-10-09 |
| | | |||
| * | Big powerpill added to my XMonad and XMobar. | Josh Rahm | 2022-10-09 |
| | | |||
| * | Add more DMenu integration & Add ability to change the spacing with ↵ | Josh Rahm | 2022-10-09 |
| | | | | | Mod+Shift+[]. | ||
| * | add passmenu | Josh Rahm | 2022-10-09 |
| | | |||
| * | Make the startup script segregate commands for different hosts. | Josh Rahm | 2021-11-01 |
| | | |||
| * | Add passmenu integrations. | Josh Rahm | 2021-11-01 |
| | | |||
| * | Change Mod key to hyper & pimp out my DMenu. | Josh Rahm | 2021-10-29 |
| | | |||
| * | Added xev to float. Added keybindings for programmer dvorak | Josh Rahm | 2021-10-11 |
| | | |||
| * | Set alacritty to be default terminal and avoid struts | Josh Rahm | 2021-10-09 |
| | | |||
| * | Change how clicking works. Allow click through on focus and change focus to ↵ | Josh Rahm | 2020-04-22 |
| | | | | | current window when pressing the mouse macro buttons. | ||
| * | Add the ability to swap screens using Mod4-Mod1-aoe | Josh Rahm | 2020-04-07 |
| | | |||
| * | Add some bindings for the other buttons on the mouse | Josh Rahm | 2020-03-26 |
| | | |||
| * | Move logic from Keys.hs to Lib.hs. | Josh Rahm | 2020-03-26 |
| | | | | | | | Added an monad XPlus that holds extra state with the MarkContext, etc. This should make it easier to handle as more and more state accrues over time. | ||
| * | Added ability to cycle linearly through workspaces with win-N and win-P | Josh Rahm | 2020-03-20 |
| | | |||
| * | Change the suspend from pm-suspend to systemctl suspend | Josh Rahm | 2020-02-25 |
| | | |||
| * | Added ability to swap workspaces. | Josh Rahm | 2020-02-21 |
| | | |||
| * | Make some changes specific to my laptop | Josh Rahm | 2020-02-21 |
| | | |||
| * | Remove unused AlterZoom datatype | Josh Rahm | 2020-02-10 |
| | | |||