about summary refs log tree commit diff
Commit message (Collapse)AuthorAgeFilesLines
...
* Updated status barManuel Palenzuela2019-06-101-2/+8
|
* Updated status barManuel Palenzuela2019-06-102-4/+51
|
* Updated status barManuel Palenzuela2019-06-101-122/+65
|
* Fixed a warning in the compilation [Not Important]Manuel Palenzuela2019-06-101-1/+1
|
* Added savefloats patch [Patch]Manuel Palenzuela2019-06-102-2/+57
|
* Added cyclelayouts and removed some keybindings [Patch]Manuel Palenzuela2019-06-104-1/+123
|
* Removed unnecesary patchManuel Palenzuela2019-06-101-94/+0
|
* Added movestack [Patch]Manuel Palenzuela2019-06-103-2/+126
|
* Added separators in the status scriptManuel Palenzuela2019-06-101-1/+3
|
* Added status bar scriptManuel Palenzuela2019-06-102-0/+216
|
* Improved gaps patchManuel Palenzuela2019-06-103-77/+130
|
* Added activetagindicator [Patch]Manuel Palenzuela2019-06-103-4/+746
|
* Added alpha option [Patch]Manuel Palenzuela2019-06-106-22/+369
|
* Added ewmhtags [Patch]Manuel Palenzuela2019-06-091-1/+52
|
* Modified gaps patch [Patch]Manuel Palenzuela2019-06-092-18/+4
|
* Changed gap pixelsManuel Palenzuela2019-06-091-1/+1
|
* Added gaps 2/2 [Patch]Baitinq2019-06-091-0/+1
|
* Added gaps 1/2 [Patch]Manuel Palenzuela2019-06-091-6/+30
|
* Added gaps 1/2 [Patch]Manuel Palenzuela2019-06-091-0/+54
|
* Fixed gitignoreManuel Palenzuela2019-06-093-1/+284
|
* Removed ignored filesManuel Palenzuela2019-06-095-284/+0
|
* Applied focusonclick patch [Patch]Manuel Palenzuela2019-06-093-46/+8
|
* Added more ignored filesManuel Palenzuela2019-06-091-0/+5
|
* Added a patch to the queueManuel Palenzuela2019-06-092-115/+130
|
* Removed spawn keybindingsManuel Palenzuela2019-06-092-2/+0
|
* Changed some keybindingsManuel Palenzuela2019-06-094-0/+113
|
* Added gitignoreManuel Palenzuela2019-06-091-0/+1
|
* Added sync script and patches folderManuel Palenzuela2019-06-092-0/+165
|
* Prepare 6.2 release.Anselm R Garbe2019-02-023-3/+17
|
* pledge: add rpath promise for the ugly Xft font fallbackHiltjo Posthuma2018-06-021-1/+1
|
* Makefile: just show the compiler outputHiltjo Posthuma2018-06-021-26/+17
| | | | Don't be fancy and just show the actual output so debugging is simpler.
* Do not strip at link stageKlemens Nanni2018-06-021-1/+1
| | | | | Building with debug symbols is worthless unless LDFLAGS are manually adjusted as well.
* Pledge on OpenBSDKlemens Nanni2018-05-251-0/+4
|
* config.def.h: ClkTagBar missing from commentHiltjo Posthuma2018-05-251-1/+1
| | | | | | | 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
* Function declarations in correct order.Christopher Drelich2018-05-121-1/+1
| | | | | | | 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.
* remove old TODO and BUGS entriesHiltjo Posthuma2018-05-124-58/+4
| | | | | | the bug in the dwm man page is an (ancient) Java issue. Thanks David and quinq for the patches and feedback!
* update README: remove mentioning the old dextra repoHiltjo Posthuma2018-03-141-3/+0
| | | | Thanks Christopher Drelich <cd@cdrakka.com>
* All functions in alphabetical order except for this one.Christopher Drelich2018-03-141-9/+9
|
* ColBorder has been moved to the enum with ColFg and ColBg.Christopher Drelich2018-03-142-2/+1
|
* dont NUL terminate _NET_WM_NAMEHiltjo Posthuma2017-12-271-1/+1
| | | | | | | | | | | | | | | 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.
* sync dmenu drw.{c,h} code: use Clr* (was Scm)Hiltjo Posthuma2017-11-033-13/+13
|
* gettextprop: check result of XGetTextProperty (undefined behaviour for XFree)Hiltjo Posthuma2017-11-031-2/+1
|
* Set class name on status barOmar Sandoval2017-11-031-0/+2
| | | | | This is useful for configuring compositors to ignore the status bar window.
* simplify isfixed conditionsDaniel Cousens2017-10-111-2/+1
|
* yet another cleanupAnselm R Garbe2017-05-082-35/+35
| | | | | The previous patches introduced some unclean space-based indentation patterns. This patch fixes them.
* Don't restrict snap in mousemoveMarkus Teich2017-03-281-14/+11
| | | | | This also fixes a bug where client windows only switch to floating mode when the mouse is dragged in one specific direction.
* Button passthrough when client is not focusedMarkus Teich2017-03-281-10/+11
| | | | | | | | | | | 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.
* cleanupMarkus Teich2017-03-283-36/+32
| | | | | | | | | | | | | | - 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.
* applied Markus' tagset purge of alternative view on _NET_ACTIVE_WINDOW eventAnselm R Garbe2016-12-051-20/+18
|
* applied Ivan Delalande's NET_SUPPORTING_WM_CHECK patch for gtk3 compatibilityAnselm R Garbe2016-12-051-2/+14
|