aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2024-11-01movekeyboard now does 32 instead of 20 pixel movements.Aryadev Chavali
2024-11-01Align variables, snap_pixel 32 -> 16, default_gaps 40 -> 50Aryadev Chavali
2024-10-20Make keys easier to write and look atAryadev Chavali
2024-10-20Change scratchpad from Emacs back to stAryadev Chavali
2024-10-20Added patch to move floating windows via the keyboardAryadev Chavali
2024-10-05Switch scratchpad to Emacs, make col_black proper blackAryadev Chavali
2024-08-07Modified README, adding optional libxinerma requirementAryadev Chavali
2024-08-07Modified README to look nicerAryadev Chavali
2024-08-07Update READMEAryadev Chavali
2024-08-07Change rule for mpv and remove rule for media-term (obsolete)Aryadev Chavali
2024-07-25Two arrays of gaps are stored in pertag, switchable by toggle_gapsAryadev 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-24Add patch for deferring focusAryadev Chavali
2024-07-24Defer focusing on sticky windows on switching tagsAryadev 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-24Added dwm-sticky patchAryadev Chavali
Make sticky windows, which are kinda like Mod-Shift-0 tagged windows but easier to manage.
2024-07-22Added dwmblocks man page referenceAryadev Chavali
2024-06-24Disable flycheck mode properly in dir-localsAryadev Chavali
2024-06-24Added view all/tag all bindsAryadev Chavali
2024-06-24Remove attachasideAryadev Chavali
2024-06-12Added compile-command dir-local for quick compilationAryadev Chavali
2024-06-03gappx -> default_gaps, opengap -> optional_gapsAryadev Chavali
2024-05-31Updating changesAryadev Chavali
2024-05-22Update indenting and add commands for fine tuning gapsAryadev Chavali
2024-05-22Merge upstream release '6.5'Aryadev Chavali
2024-05-22Add patches to version controlAryadev Chavali
2024-05-22Adjust config.h to use new pertag gapsAryadev Chavali
2024-05-22[PATCH] Adjust gapless grid for pertag gapsAryadev Chavali
2024-05-22[PATCH] Gaps are set on a pertag basisAryadev 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-22Remove dmenumon and dmenucmdAryadev Chavali
Obsolete due to previous patch
2024-05-22[Patch] Remove dmenu functionality from DWMAryadev Chavali
If using an external keyboard client such as sxhkdrc then dwm has no business or need to spawn something like dmenu.
2024-04-23Added Makefile recipe just for manpagesAryadev Chavali
2024-04-23Cleaned up and updated man page for DWMAryadev Chavali
This will provide up to date references to my key bindings!
2024-04-23Made patch for adding gaps to dwm-monocleAryadev Chavali
2024-04-23Monocle now uses gapsAryadev Chavali
2024-04-23Made a patch for adding gaps to gapless gridAryadev Chavali
2024-04-23Add gaps to gapless-grid (properly)Aryadev Chavali
This adjusts both the x and y of each client now.
2024-04-23Revert (pretty crappy) gap version of gapless-gridAryadev Chavali
2024-04-23Added patch dwm-inplacerotateAryadev Chavali
2024-04-23Use st instead of alacritty for scratchpadAryadev Chavali
2024-04-22Added a README, other small changesAryadev Chavali
2024-04-18Added patches folderAryadev Chavali
2024-04-18Turn off clang-format-mode with an eval in dir-localsAryadev Chavali
2024-04-18Merged laptop version with remoteAryadev Chavali
Laptop had gapless grid
2024-03-19bump version to 6.5Hiltjo Posthuma
2023-11-06Added "deck" layout patchAryadev Chavali
2023-11-06Temporarily disabled attachaside diffAryadev Chavali
Using normal dwm mechanisms for now
2023-10-22new colorscheme, bar is now on bottomAryadev Chavali
2023-10-22Changed font of DWMAryadev Chavali
2023-10-20Added fibonacci layout to DWMAryadev Chavali
2023-10-06Add some comments in config.hAryadev Chavali
2023-09-22Makefile: remove the options targetHiltjo 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.