Age | Commit message (Collapse) | Author | |
---|---|---|---|
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 | |||
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 | |
2022-10-11 | (config.h)~changed tag 6 to musical note | Aryadev Chavali | |
2022-09-18 | (config.h)-whitespace | Aryadev Chavali | |
2022-09-18 | (config.h)~changed a few things | Aryadev Chavali | |
~ green colours main theme + binding for increasing gap size | |||
2022-01-07 | +dwm-statuscmd diff, didn't work | Aryadev Chavali | |
2022-01-07 | ~config.h now has toggleable gaps | Aryadev Chavali | |
2021-07-11 | (config.h)~scratchpad to alacritty and turn off gaps | Aryadev Chavali | |
gaps can be set on demand, don't see any point in using it. | |||
2021-05-22 | (Config)~changed some binds, minor edits | Aryadev Chavali | |
2021-05-07 | ~make notify-send send a low priority notification | Aryadev Chavali | |
2021-03-27 | (Config)~set browsers to always goto 2nd tag | Aryadev Chavali | |
2021-03-27 | (Config)+custom functions with bindings that print and reset gaps | Aryadev Chavali | |
2021-03-27 | (Config)~borderpx 10 -> 2 | Aryadev Chavali | |
2021-03-27 | (Config)~changed colours green -> blue | Aryadev Chavali | |
A nice little change. | |||
2021-03-22 | +patches for centered master | Aryadev Chavali | |
2020-09-29 | ~scratchpadcmd Emacs -> st + tmux | Aryadev Chavali | |
2020-09-29 | -dwm-xrdb diff because I like specifying colours manually | Aryadev Chavali | |
2020-09-29 | +dwm attachaside and dwm pertag | Aryadev Chavali | |
2020-09-29 | +a new colour for my status bar | Aryadev Chavali | |
2020-09-29 | ~mfact 0.5 -> 0.55 | Aryadev Chavali | |
2020-09-29 | -Hyperkey commands | Aryadev Chavali | |
Removed the hyperkey from sxhkd as well as xmodmap, replace caps lock with escape instead | |||
2020-09-29 | ~scratchpad command to Emacs | Aryadev Chavali | |
2020-07-21 | +my custom config for dwm | Aryadev Chavali | |
my config.h along with all the diffs I've used to make it easier for others to try and imitate my dwm instance. | |||
2020-07-09 | Merge branch 'master' of https://git.suckless.org/dwm | dx | |
2020-07-09 | +patches for scratchpad, color specification and gaps | dx | |
2020-07-08 | dwm.1: fix wrong text in man page | Hiltjo Posthuma | |
2020-06-11 | Fix memory leaks in drw | Alex Flierl | |
The function drw_fontset_free in drw.c was never called. | |||
2020-04-25 | dwm crashes when opening 50+ clients (tile layout) | bakkeby | |
Many users new to dwm find themselves caught out by being kicked out to the login manager (dwm crashing) when they open 50+ clients for demonstration purposes. The number of clients reported varies depending on the resolution of the monitor. The cause of this is due to how the default tile layout calculates the height of the next client based on the position of the previous client. Because clients have a minimum size the (ty) position can exceed that of the window height, resulting in (m->wh - ty) becoming negative. The negative height stored as an unsigned int results in a very large height ultimately resulting in dwm crashing. This patch adds safeguards to prevent the ty and my positions from exceeding that of the window height. |