summaryrefslogtreecommitdiffhomepage
AgeCommit message (Collapse)Author
2020-07-18Making bars list into linked listbakkeby
2020-07-18Revert config.mk uncommentingbakkeby
2020-07-18Refinementbakkeby
2020-07-15status2d: hide click_status2d if dwmblocks is usedbakkeby
2020-07-15Movestack can cause dwm to crash if there are no selections on the monitorbakkeby
2020-07-15taggrid: fix for invalid highlighting for the last tag when columns have an ↵bakkeby
uneven number of clients
2020-07-15Adding BarWidthArg, BarDrawArg, BarClickArg to keep the method signatures staticbakkeby
2020-07-15Further bar renamingbakkeby
2020-07-15Major refactoring in preparation for bar modulesbakkeby
2020-07-15Fixing rawstext defined but not used warningbakkeby
2020-07-15Correcting links status2d compatible with extrabarbakkeby
2020-07-09flextile deluxe: fixed dual stack bugbakkeby
2020-07-09awesomebar: refactoring remainder logic, which seemed a bit offbakkeby
2020-07-08dwm.1: fix wrong text in man page (aaad5f)bakkeby
2020-07-08staticstatus + extrabar: Allow extrabar to be static on a monitor other than ↵bakkeby
that of the main staticstatus monitor
2020-07-07Extrabar alignment, buttonclicks and other improvementsbakkeby
2020-07-05Extrabar compatibility improvementsbakkeby
2020-07-05Extrabar compatibility improvementsbakkeby
2020-07-05extrabar compatibility updatesbakkeby
+ only shows on a given monitor if staticstatus patch is enabled. + status2d support (although extrabar status is written on the right, not on the left) + now clears extrabar on other monitors in a multi-monitor setup - breaks dwmblocks in terms of registred buttonpresses - extrabar is not clickable
2020-07-05Fix for dwm randomly crashing when the first systray application startsbakkeby
The crash error was: dwm: fatal error: request code=12, error code=11 X Error of failed request: BadAlloc (insufficient resources for operation) Major opcode of failed request: 12 (X_ConfigureWindow) Serial number of failed request: 3333 Current serial number in output stream: 3338 This was backtracked to function updatesystray where XConfigureWindow was called with large negative X positions (e.g. -836585). The large number coming from the width of the systray icon. w += i->w; The systray icon width is set through the updatesystrayicongeom function and this is called by resizerequest, clientmessage and propertynotify. The height and width would appear to come from the X window attributes and sometimes have random values (e.g. height 32708 and width 1369918222). updatesystrayicongeom restricts the height of the icon to that of the bar, but did not have any restictions on the icon width. This fix limits the icon width to that of the bar height if it is greater than twice the bar height, leaving room for systray icons that are slightly wider than they are tall.
2020-07-04center patch: adding options to center transient windowsbakkeby
2020-07-03switchtag improvements, making the restoring of tags optional and configurablebakkeby
2020-07-03switchtag improvements, making the restoring of tags optional and configurablebakkeby
2020-07-02switchtag patch: do not switch tags if the tag is already shown, same with ↵bakkeby
focusonnetactive patch
2020-07-01Fixed a dwmblocks / statuscmd / systray compatibility issue where button ↵bakkeby
clicks would be misaligned if systray pinning is used and systray is on another monitor
2020-06-30Adding alternative activetagindicatorbar patchbakkeby
2020-06-30holdbar: toggle bar improvementsbakkeby
2020-06-29dragmfact: Tweaks for fixed horizontal splitbakkeby
2020-06-25Adding cursor icons for resizecorners, resizepoint, dragmfact and dragcfactbakkeby
2020-06-25Updating sendmon_keepfocus to only keep focus if the client had focusbakkeby
2020-06-24Adding link to sendmon_keepfocus patchbakkeby
2020-06-24Adding sendmon_keepfocus patchbakkeby
2020-06-24Adding statusbutton patch ref. #33bakkeby
2020-06-24Adding resizepoint patchbakkeby
2020-06-23floatpos: allow controls in floating modebakkeby
2020-06-23floatpos: correctionbakkeby
2020-06-23floatpos: refactoringbakkeby
2020-06-22floatpos: correcting defaultsbakkeby
2020-06-21Adding bar_height patchbakkeby
2020-06-21setborderpx correctionbakkeby
2020-06-21Adding floatpos patch.bakkeby
2020-06-21Minor style correctionbakkeby
2020-06-21Tidy following tagothermonitor mergebakkeby
2020-06-21Merge pull request #32 from gx2b/masterStein Gunnar Bakkeby
Adding tagothermonitor patch
2020-06-19Adding tagothermonitor patchmatt
2020-06-15Adding sizehints patchbakkeby
2020-06-15Default example config should use .isfloating not .floating, could also use ↵bakkeby
the FLOATING macro
2020-06-15Default example config should use .isfloating not .floating, could also use ↵bakkeby
the FLOATING macro
2020-06-15Rule macro improvements + rule macro helper macrosbakkeby
2020-06-15Make EWMH windows floatbakkeby
Move updatewindowtype() functionality into applyrules(), and also make following EWMH windows float: DIALOG, UTILITY, TOOLBAR, SPLASH. This is taking the proposed patch to add window type to the rule matching options for dwm, allowing dialog, utility, toolbar and splash windows to be configured to float by default. This patch is intended to be merged into the main dwm build. In effect the intermediate EWMH_WINDOWS_FLOAT_PATCH has also been removed.