Age | Commit message (Collapse) | Author | |
---|---|---|---|
2024-11-01 | movekeyboard now does 32 instead of 20 pixel movements. | Aryadev Chavali | |
2024-11-01 | Align variables, snap_pixel 32 -> 16, default_gaps 40 -> 50 | Aryadev Chavali | |
2024-10-20 | Make keys easier to write and look at | Aryadev Chavali | |
2024-10-20 | Change scratchpad from Emacs back to st | Aryadev Chavali | |
2024-10-20 | Added patch to move floating windows via the keyboard | Aryadev Chavali | |
2024-10-05 | Switch scratchpad to Emacs, make col_black proper black | Aryadev Chavali | |
2024-08-07 | Modified README, adding optional libxinerma requirement | Aryadev Chavali | |
2024-08-07 | Modified README to look nicer | Aryadev Chavali | |
2024-08-07 | Update README | Aryadev Chavali | |
2024-08-07 | Change rule for mpv and remove rule for media-term (obsolete) | Aryadev Chavali | |
2024-07-25 | Two arrays of gaps are stored in pertag, switchable by toggle_gaps | Aryadev Chavali | |
With this commit, each tag has two gap values (indexes at `gaps_previous`, `gaps_current`) that can be interchanged via `toggle_gaps`. At initialisation, `gaps_previous` is set to `default_gaps` and `gaps_current` is set to all 0. | |||
2024-07-24 | Add patch for deferring focus | Aryadev Chavali | |
2024-07-24 | Defer focusing on sticky windows on switching tags | Aryadev Chavali | |
focus(NULL) is called when switching to a new tag or monitor. I don't want sticky windows to get first focus in this situation, hence this code. Shamelessly stolen from https://github.com/LukeSmithxyz/dwm/issues/152. | |||
2024-07-24 | Added dwm-sticky patch | Aryadev Chavali | |
Make sticky windows, which are kinda like Mod-Shift-0 tagged windows but easier to manage. | |||
2024-07-22 | Added dwmblocks man page reference | Aryadev Chavali | |
2024-06-24 | Disable flycheck mode properly in dir-locals | Aryadev Chavali | |
2024-06-24 | Added view all/tag all binds | Aryadev Chavali | |
2024-06-24 | Remove attachaside | Aryadev Chavali | |
2024-06-12 | Added compile-command dir-local for quick compilation | Aryadev Chavali | |
2024-06-03 | gappx -> default_gaps, opengap -> optional_gaps | Aryadev Chavali | |
2024-05-31 | Updating changes | Aryadev Chavali | |
2024-05-22 | Update indenting and add commands for fine tuning gaps | Aryadev Chavali | |
2024-05-22 | Merge upstream release '6.5' | Aryadev Chavali | |
2024-05-22 | Add patches to version control | Aryadev Chavali | |
2024-05-22 | Adjust config.h to use new pertag gaps | Aryadev Chavali | |
2024-05-22 | [PATCH] Adjust gapless grid for pertag gaps | Aryadev Chavali | |
2024-05-22 | [PATCH] Gaps are set on a pertag basis | Aryadev Chavali | |
For each tag there is a gap (set to the default gappx on construction). When adjusting gaps or arranging a monitor use the gaps of the currently selected tag. This means I can have gaps activated in some tags and not activated on others. | |||
2024-05-22 | Remove dmenumon and dmenucmd | Aryadev Chavali | |
Obsolete due to previous patch | |||
2024-05-22 | [Patch] Remove dmenu functionality from DWM | Aryadev Chavali | |
If using an external keyboard client such as sxhkdrc then dwm has no business or need to spawn something like dmenu. | |||
2024-04-23 | Added Makefile recipe just for manpages | Aryadev Chavali | |
2024-04-23 | Cleaned up and updated man page for DWM | Aryadev Chavali | |
This will provide up to date references to my key bindings! | |||
2024-04-23 | Made patch for adding gaps to dwm-monocle | Aryadev Chavali | |
2024-04-23 | Monocle now uses gaps | Aryadev Chavali | |
2024-04-23 | Made a patch for adding gaps to gapless grid | Aryadev Chavali | |
2024-04-23 | Add gaps to gapless-grid (properly) | Aryadev Chavali | |
This adjusts both the x and y of each client now. | |||
2024-04-23 | Revert (pretty crappy) gap version of gapless-grid | Aryadev Chavali | |
2024-04-23 | Added patch dwm-inplacerotate | Aryadev Chavali | |
2024-04-23 | Use st instead of alacritty for scratchpad | Aryadev Chavali | |
2024-04-22 | Added a README, other small changes | Aryadev Chavali | |
2024-04-18 | Added patches folder | Aryadev Chavali | |
2024-04-18 | Turn off clang-format-mode with an eval in dir-locals | Aryadev Chavali | |
2024-04-18 | Merged laptop version with remote | Aryadev Chavali | |
Laptop had gapless grid | |||
2024-03-19 | bump version to 6.5 | Hiltjo Posthuma | |
2023-11-06 | Added "deck" layout patch | Aryadev Chavali | |
2023-11-06 | Temporarily disabled attachaside diff | Aryadev Chavali | |
Using normal dwm mechanisms for now | |||
2023-10-22 | new colorscheme, bar is now on bottom | Aryadev Chavali | |
2023-10-22 | Changed font of DWM | Aryadev Chavali | |
2023-10-20 | Added fibonacci layout to DWM | Aryadev Chavali | |
2023-10-06 | Add some comments in config.h | Aryadev Chavali | |
2023-09-22 | Makefile: remove the options target | Hiltjo Posthuma | |
The Makefile used to suppress output (by using @), so this target made sense at the time. But the Makefile should be simple and make debugging with less abstractions or fancy printing. The Makefile was made verbose and doesn't hide the build output, so remove this target. Prompted by a question on the mailing list about the options target. |