aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
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.
2020-04-03config.mk: fix POSIX_C_SOURCE macro for feature test for snprintf()Hiltjo Posthuma
The feature test was incorrect: _POSIX_C_SOURCE=2 "The value 2 or greater additionally exposes definitions for POSIX.2-1992." http://man7.org/linux/man-pages/man7/feature_test_macros.7.html A higher value is needed (atleast 1995): https://pubs.opengroup.org/onlinepubs/9699919799/functions/snprintf.html FreeBSD feature test macro: on https://github.com/freebsd/freebsd/blob/master/include/stdio.h line 297 This was already fixed in dmenu. This fixes a warning on FreeBSD, reported by Plasmoduck on IRC, thanks.
2019-02-02Prepare 6.2 release.Anselm R Garbe
2018-06-02pledge: add rpath promise for the ugly Xft font fallbackHiltjo Posthuma
2018-06-02Makefile: just show the compiler outputHiltjo Posthuma
Don't be fancy and just show the actual output so debugging is simpler.
2018-06-02Do not strip at link stageKlemens Nanni
Building with debug symbols is worthless unless LDFLAGS are manually adjusted as well.
2018-05-25Pledge on OpenBSDKlemens Nanni
2018-05-25config.def.h: ClkTagBar missing from commentHiltjo Posthuma
by Christopher Drelich <cd@cdrakka.com> Patch was mangled on the ML, also adjusted the order to be the same as the enum in dwm.c
2018-05-12Function declarations in correct order.Christopher Drelich
In dwm.c function declarations are in alphabetical order except for updategeom(). There doesn't appear to be any reason for this, so this patch corrects that, and now all function declarations are in alphabetical order.
2018-05-12remove old TODO and BUGS entriesHiltjo Posthuma
the bug in the dwm man page is an (ancient) Java issue. Thanks David and quinq for the patches and feedback!
2018-03-14update README: remove mentioning the old dextra repoHiltjo Posthuma
Thanks Christopher Drelich <cd@cdrakka.com>
2018-03-14All functions in alphabetical order except for this one.Christopher Drelich
2018-03-14ColBorder has been moved to the enum with ColFg and ColBg.Christopher Drelich
2017-12-27dont NUL terminate _NET_WM_NAMEHiltjo Posthuma
Reported by Kernc, thanks! "This makes a particular program that uses libwnck [1] fail after: Wnck-WARNING **: Property _NET_WM_NAME contained invalid UTF-8 in this code [2] because the returned string contains a '\0' and the documentation for g_utf8_validate() [3] explicitly states that when string length is provided, no nul bytes are allowed." It is not entirely clear it is incorrect, other WM's seem to not NUL terminate it either though.
2017-11-03sync dmenu drw.{c,h} code: use Clr* (was Scm)Hiltjo Posthuma