aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
...
| * Change set-sink.shJosh Rahm2022-01-10
| | | | | | | | | | | | | | | | | | | | Before this script would use the PID of the current window to infer the input to switch. However some frontends use a daemon to output the sound, so it doesn't work in that case. Instead, now, set-sink will prompt the user to select the active sink to switch. If there is only one active sink it will automatically move that one.
| * If rofi is installed on the system, use that for emoji selection. Rofi has ↵Josh Rahm2022-01-10
| | | | | | | | much better unicode support than dmenu. I might switch over to it at some point.
| * 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.
| * For the work laptop, fix it so that picom does not run with multiple ↵Josh Rahm2022-01-10
| | | | | | | | monitors (it slows things down way too much)
| * Fix sending the SIGUSR to Xmobar syntaxJosh Rahm2022-01-10
| |
* | merged.Josh Rahm2022-01-10
|/
* Merge branch 'v017' of git.josher.dev:rde into v017Josh Rahm2022-01-07
|\
| * minor aesthetic changesJosh Rahm2021-12-29
| |
* | Fix fullscreen issues.Josh Rahm2022-01-07
|/
* Add dimming to bluetooth-selectJosh Rahm2021-11-29
|
* 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 some better support for Void Linux.Josh Rahm2021-11-24
| | | | | | | | | Void Linux doesn't have spotify in its official repos. Going with open source solutions, I can use spotifyd, but had to hack my spotify-control scripts to get it to work. Void linux also puts all its binaries in /bin for some reason. Not sure I like that, but I had to change the DMenu module to support that.
* 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.
* Added more to the README. More on the way!!Josh Rahm2021-11-23
|
* Started to update the readme with better documentation.Josh Rahm2021-11-23
|
* Add some support of the XF86 keys.Josh Rahm2021-11-22
|
* Added a couple of bindings.Josh Rahm2021-11-22
|
* Merge branch 'v017' of josher.dev:rde into v017Josh 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.
* | Merge branch 'v017' of josher.dev:rde into v017Josh Rahm2021-11-16
|\|
| * Change marking to use greedy viewing.Josh Rahm2021-11-15
| |
* | Some changes to comptonJosh Rahm2021-11-16
|/
* 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.
* Change the next-prev keybindings to cycle through only hidden workspaces.Josh Rahm2021-11-10
| | | | This keeps the other monitors stable, which I prefer.
* Upgrade to XMonad v0.17Josh Rahm2021-11-10
|
* Minor changes to xmobar. C-S-q now restarts xmonad.Josh Rahm2021-11-10
|
* Merge remote-tracking branch 'josher/master'masterJosh Rahm2021-11-08
|\
| * minor fixes and whatnotJosh Rahm2021-11-08
| |
| * Merge branch 'master' of github.com:jrahm/xmonad-jrahmJosh Rahm2021-11-06
| |\
| * | Clean up spotify-control script.Josh Rahm2021-11-04
| | |
* | | Fix calculating position for rotation layout modifierJosh Rahm2021-11-08
| |/ |/|
* | Fix more things with the weather.Josh Rahm2021-11-05
| |
* | 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.
* | Add my own xmobar-weather perl script.Josh Rahm2021-11-05
| | | | | | | | | | The builtin xmobar weather is not feature rich enough. My new script will change icons depending on the time of day.
* | Merge branch 'master' of github.com:jrahm/xmonad-jrahmJosh Rahm2021-11-05
|\|
| * Make inactive bluetooth the same color as everything elseJosh Rahm2021-11-04
| |
| * Change keys to use mod+shift+/- to change the size for Mosaic.Josh Rahm2021-11-04
| |
* | Fix old bug.Josh Rahm2021-11-04
|/ | | | | | 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.
* update xmobar config. Can't quite make up my mind.Josh Rahm2021-11-04
|
* Clean up LayoutDraw.hsJosh Rahm2021-11-04
|
* Break out the XMobar logging subroutines into its own module.Josh Rahm2021-11-04
|
* Remove extra log. Change trunc to be TCO-able.Josh Rahm2021-11-04
|
* Fixed huuuuge bug related to dynamicLogWithPP.Josh Rahm2021-11-04
| | | | | | | | | | | 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 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.