aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
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
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
2022-10-11(config.h)~changed tag 6 to musical noteAryadev Chavali
2022-09-18(config.h)-whitespaceAryadev Chavali
2022-09-18(config.h)~changed a few thingsAryadev Chavali
~ green colours main theme + binding for increasing gap size
2022-01-07+dwm-statuscmd diff, didn't workAryadev Chavali
2022-01-07~config.h now has toggleable gapsAryadev Chavali
2021-07-11(config.h)~scratchpad to alacritty and turn off gapsAryadev Chavali
gaps can be set on demand, don't see any point in using it.
2021-05-22(Config)~changed some binds, minor editsAryadev Chavali
2021-05-07~make notify-send send a low priority notificationAryadev Chavali
2021-03-27(Config)~set browsers to always goto 2nd tagAryadev Chavali
2021-03-27(Config)+custom functions with bindings that print and reset gapsAryadev Chavali
2021-03-27(Config)~borderpx 10 -> 2Aryadev Chavali
2021-03-27(Config)~changed colours green -> blueAryadev Chavali
A nice little change.
2021-03-22+patches for centered masterAryadev Chavali
2020-09-29~scratchpadcmd Emacs -> st + tmuxAryadev Chavali
2020-09-29-dwm-xrdb diff because I like specifying colours manuallyAryadev Chavali
2020-09-29+dwm attachaside and dwm pertagAryadev Chavali
2020-09-29+a new colour for my status barAryadev Chavali
2020-09-29~mfact 0.5 -> 0.55Aryadev Chavali
2020-09-29-Hyperkey commandsAryadev Chavali
Removed the hyperkey from sxhkd as well as xmodmap, replace caps lock with escape instead
2020-09-29~scratchpad command to EmacsAryadev Chavali
2020-07-21+my custom config for dwmAryadev 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-09Merge branch 'master' of https://git.suckless.org/dwmdx
2020-07-09+patches for scratchpad, color specification and gapsdx
2020-07-08dwm.1: fix wrong text in man pageHiltjo Posthuma
2020-06-11Fix memory leaks in drwAlex Flierl
The function drw_fontset_free in drw.c was never called.
2020-04-25dwm 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.
2020-04-22drawbar: Don't shadow sw globalChris Down
This jarred me a bit while reading the code, since "sw" usually refers to the global screen geometry, but in drawbar() only it refers to text-related geometry. Renaming it makes it more obvious that these are not related.
2020-04-22getatomprop: Add forward declarationChris Down
No functional changes, but for every other function we have a forward declaration here. getatomprop should be no exception.
2020-04-20setmfact: Unify bounds for compile-time and runtime mfactChris Down
There are two places that mfact can be set: - In the mfact global, which is defined at compile time and passed into m->mfact during monitor setup. No bounds checks are performed, but the comment alongside it says that valid values are [0.05..0.95]: static const float mfact = 0.55; /* factor of master area size [0.05..0.95] */ - By setmfact, which adjusts m->mfact at runtime. It also does some minimum and maximum bounds checks, allowing [0.1..0.9]. Values outside of that range are ignored, and mfact is not adjusted. These different thresholds mean that one cannot setmfact 0.95 or 0.05, despite the comment above that lists the legal range for mfact. Clarify this by enforcing the same bounds in setmfact at runtime as those listed for mfact at compile time.