aboutsummaryrefslogtreecommitdiff
path: root/src/Main.hs
Commit message (Collapse)AuthorAge
* Move Rahm.Desktop.Layout.Layout to Rahm.Desktop.LayoutJosh Rahm2022-10-09
|
* More refactoring. Started breaking up Layout. Moved Language extensions into ↵Josh Rahm2022-10-09
| | | | stack file.
* Rename Internal to Rahm.DesktopJosh Rahm2022-10-09
|
* Fixed bug where multiple configures would override previous configures for ↵Josh Rahm2022-10-09
| | | | window-specific bindings
* Add a DSL for configuring Window-Specific bindings and move it into the ↵Josh Rahm2022-10-09
| | | | Keys.hs file.
* Add firefox to the browsers listJosh Rahm2022-10-09
|
* add swallow behavior. Add more Chrome bindings.Josh Rahm2022-10-09
|
* Figured out the flakiness was due to withAll only applying to windows on the ↵Josh Rahm2022-10-09
| | | | current workspace instead of _all_ windows. Poor naming.
* Add (some) ability to send keys to other windowsJosh Rahm2022-10-09
|
* Move Intercept to RebindKeys. Remove the intercept subsystem as it was ↵Josh Rahm2022-10-09
| | | | experimental and I do not have a real use for it anymore.
* Add Brave to list of browsers to intercept keystrokes. Add mouse bindingns ↵Josh Rahm2022-10-09
| | | | | | | | for dragging and resizing. button13+LeftMouse = Drag button13+RightMouse = Resize button13+button13 = retile
* Another Chrome binding added.Josh Rahm2022-10-09
| | | | | | There's a bug where it seems the mappings are applied inconsistently after a restart. Not sure what causes that. Seems bouncing XMonad again fixes it.
* Added a way to do per-window bindings in XMonad.Josh Rahm2022-10-09
| | | | | | 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-10-09
|
* Add experimental motion events. Not super useful at the moment, but might be ↵Josh Rahm2022-10-09
| | | | in the future.
* Better Rofi integrationJosh Rahm2022-10-09
|
* Fix fullscreen issues.Josh Rahm2022-10-09
|
* Add some support of the XF86 keys.Josh Rahm2022-10-09
|
* Compeletely change how KeyBindings are done.Josh Rahm2022-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.
* Add keybindings toJosh Rahm2022-10-09
| | | | | - Copy window to another Workspace. - Launch a floating terminal.
* minor fixes and whatnotJosh Rahm2022-10-09
|
* Clean up LayoutDraw.hsJosh Rahm2022-10-09
|
* Break out the XMobar logging subroutines into its own module.Josh Rahm2022-10-09
|
* Remove extra log. Change trunc to be TCO-able.Josh Rahm2022-10-09
|
* Fixed huuuuge bug related to dynamicLogWithPP.Josh Rahm2022-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 Rahm2022-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 Rahm2022-10-09
| | | | i.e. would rather show 'My Title' rather than 'My Titl ...'
* Add ability to truncate xmobar output.Josh Rahm2022-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.
* Finally, after much wailing and gnashing of teeth, fixed the Xmobar layout ↵Josh Rahm2022-10-09
| | | | icon issue!
* Synchronize with the look on photonJosh Rahm2022-10-09
|
* More XMobar sexiness.Josh Rahm2022-10-09
| | | | | Revamped the install script to make it easier to handle the install process.
* Changed how titles are parsed.Josh Rahm2022-10-09
|
* Big powerpill added to my XMonad and XMobar.Josh Rahm2022-10-09
|
* Add passmenu integrations.Josh Rahm2021-11-01
|
* Change Mod key to hyper & pimp out my DMenu.Josh Rahm2021-10-29
|
* Added xev to float. Added keybindings for programmer dvorakJosh Rahm2021-10-11
|
* Set alacritty to be default terminal and avoid strutsJosh Rahm2021-10-09
|
* Change how clicking works. Allow click through on focus and change focus to ↵Josh Rahm2020-04-22
| | | | current window when pressing the mouse macro buttons.
* Make some changes specific to my laptopJosh Rahm2020-02-21
|
* Small changes to colorscheme. Get rid of accordion and circle layoutsJosh Rahm2020-02-10
|
* Fix xscreensaver nosplash and add 1px focused border colorJosh Rahm2020-02-10
|
* Add LayoutModifier that ollows windows to be zoomed on with modm-z. When ↵Josh Rahm2020-02-07
| | | | this happens, the window will float in the middle of the screen.
* Multiple changes. Mostly added a prompt to quickly switch between windows by ↵Josh Rahm2020-02-06
| | | | fuzzy-finding them
* Add ability to fuzzy find and jump to a window based on a promptJosh Rahm2020-02-05
|
* Now any AlphaNumeric character can be a workspaceJosh Rahm2020-02-05
|
* Enable fullscreen for fullscreen applicationsJosh Rahm2020-02-04
|
* Mave icons to the left. Change icon colorsJosh Rahm2020-02-04
|
* Add ability to show layout format!Josh Rahm2020-02-03
|
* More minor aesthetic changes to XMobarJosh Rahm2020-02-03
|
* Change XMobar config to make it relatively prettyJosh Rahm2020-02-03
|