summaryrefslogtreecommitdiff
path: root/dwm.c
AgeCommit message (Collapse)Author
2020-05-18swallow patch: add FreeBSD supportaajonusonline
patch from this commit: https://github.com/deadpixi/deadpixi-dwm/commit/42a798c34b4a4182599fc09f661c3b826a77bd54
2020-05-12Fix crashes when stack is emptyMateuszOkulus
2020-05-05Merge pull request #57 from aajonusonline/masterLuke Smith
swallow patch: unfullscreen client and reset focus
2020-05-05don't swallow if window floatsLuke Smith
2020-05-05fixes previous patchAajonus Online
2020-05-05swallow patch: unfullscreen client and reset focusAajonus Online
2020-05-05swallow patch: fix ignoring of noswallow in configAajonus Online
2020-05-02use blueLuke Smith
2020-05-02causes fewer problemsLuke Smith
2020-04-26expandible scratchpad patchLuke Smith
super+shift+return for dropdown terminal super+' for dropdown calculator
2020-04-26old scratchpad patch removedLuke Smith
2020-04-26don't necessarily restart dwmblocksLuke Smith
2020-04-14swallow patchLuke Smith
2020-04-14Merge branch 'master' of https://github.com/kronikpillow/dwm into ↵Luke Smith
kronikpillow-master
2020-04-14dwmc removedLuke Smith
2020-04-14updated vanitygaps with latest fixes from original authorKronikPillow
2020-04-13suppress if no dwmblocks to killLuke Smith
2020-04-13removing barpadding patchLuke Smith
2020-04-13vanitygaps patch/fix and new & reorganized layoutsLuke Smith
2020-04-13clickable statuscmd patch with dwmblocksLuke Smith
2020-04-10startup rmdLuke Smith
2020-04-10kill -HUP pid to restart, also mod+RLuke Smith
2020-04-09only show active tagsLuke Smith
2020-04-09start `startup` script if it existsLuke Smith
2020-03-24dwmblocks started by defaultLuke Smith
2020-03-15monocle mode totally removedLuke Smith
2020-01-30fixed titlebar not being updated - issue #16KronikPillow
2019-12-18stacker patch replaces movestackLuke Smith
2019-12-18load typical color namesLuke Smith
2019-12-18gaps added to windows and barLuke Smith
2019-12-18dwmc and personal config addedLuke Smith
2019-12-16fullscreen is always selectedLuke Smith
2019-12-14sticky patchLuke Smith
2019-12-14true fullscreen patchLuke Smith
2019-12-14centered master patchLuke Smith
2019-12-14scratchpadLuke Smith
2019-12-14xrdb patchLuke Smith
2018-06-02pledge: add rpath promise for the ugly Xft font fallbackHiltjo Posthuma
2018-05-25Pledge on OpenBSDKlemens Nanni
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-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.