summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2020-01-30dmenucmd restoredLuke Smith
2020-01-30dmenucmd restoredLuke Smith
2020-01-30thatLuke Smith
2020-01-30tab revertLuke Smith
2020-01-30touchpad on/off bindsLuke Smith
2020-01-30kill xorg bindLuke Smith
2020-01-30fixed titlebar not being updated - issue #16KronikPillow
2020-01-24dwmc addedLuke Smith
2020-01-22update dwmblocksLuke Smith
2020-01-20readmeLuke Smith
2020-01-20increase/decrease gapsLuke Smith
2020-01-20unbind m for layoutLuke Smith
2019-12-19don't enforce dmenu appearanceLuke Smith
2019-12-18stacker patch replaces movestackLuke Smith
2019-12-18Revert "movestack"Luke Smith
This reverts commit 0596a1bf3bc7815035e8f8bbb5fe6d346eb2411b.
2019-12-18dwmc can use xrdbLuke Smith
2019-12-18def file updatedLuke Smith
2019-12-18load typical color namesLuke Smith
2019-12-18gaps added to windows and barLuke Smith
2019-12-18cleanup with make and gitignoreLuke Smith
2019-12-18dwmc and personal config addedLuke Smith
2019-12-16fullscreen is always selectedLuke Smith
2019-12-15movestackLuke Smith
2019-12-15shiftviewLuke Smith
2019-12-14sticky patchLuke Smith
2019-12-14true fullscreen patchLuke Smith
2019-12-14fibonacci patchLuke Smith
2019-12-14centered master patchLuke Smith
2019-12-14scratchpadLuke Smith
2019-12-14xrdb patchLuke Smith
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
2017-11-03gettextprop: check result of XGetTextProperty (undefined behaviour for XFree)Hiltjo Posthuma
2017-11-03Set class name on status barOmar Sandoval
This is useful for configuring compositors to ignore the status bar window.
2017-10-11simplify isfixed conditionsDaniel Cousens
2017-05-08yet another cleanupAnselm R Garbe
The previous patches introduced some unclean space-based indentation patterns. This patch fixes them.
2017-03-28Don't restrict snap in mousemoveMarkus Teich
This also fixes a bug where client windows only switch to floating mode when the mouse is dragged in one specific direction.
2017-03-28Button passthrough when client is not focusedMarkus Teich
Before this change it is not possible to press a button in a client on the first click if the client is not yet focused. The first click on the button would only focus the client and a second click on the button is needed to activate it. This situation can occur when moving the mouse over a client (therefore focusing it) and then moving the focus to another client with keyboard shortcuts. After this commit the behavior is fixed and button presses on unfocused clients are passed to the client correctly.
2017-03-28cleanupMarkus Teich
- unify multi-line expression alignment style. - unify multi-line function call alignment style. - simplify client moving on monitor count decrease. - clarify comment for focusin(). - remove old confusing comment about input focus fix in focusmon(). The explanation is already in the old commit message, so no need to keep it in the code. - remove old comment describing even older state of the code in focus(). - unify comment style. - break up some long lines. - fix some typos and grammar.