Age | Commit message (Collapse) | Author | |
---|---|---|---|
2020-08-27 | Merge pull request #99 from hamidout/mic-mute | Luke Smith | |
Added mute mic functionality | |||
2020-08-27 | Merge pull request #103 from Spooky309/master | Luke Smith | |
Don't try and signal dwmblocks on OpenBSD | |||
2020-08-09 | dwmblocks doesn't receive signals on OpenBSD, OpenBSD doesn't implement ↵ | skeletal738 | |
sigqueue. Got rid of these. | |||
2020-07-26 | added binding to Mic-Mute key(mutes mic, duh) | hamidout | |
2020-06-07 | snippets | Luke Smith | |
2020-06-03 | Merge pull request #79 from jbensmann/master | Luke Smith | |
fixed gaps in centeredfloatingmaster layout | |||
2020-06-02 | ui fix | Luke Smith | |
2020-06-02 | funding file for github sponsors | Luke Smith | |
2020-06-01 | fixed gaps in centeredfloatingmaster layout | Johannes Bensmann | |
the master area moved up when increasing outer gaps | |||
2020-05-19 | Merge branch 'master' of git://git.suckless.org/dwm | Luke Smith | |
2020-05-18 | swallow patch: add FreeBSD support | aajonusonline | |
patch from this commit: https://github.com/deadpixi/deadpixi-dwm/commit/42a798c34b4a4182599fc09f661c3b826a77bd54 | |||
2020-05-16 | Merge pull request #68 from vladdoster/patch-1 | Luke Smith | |
formatting | |||
2020-05-15 | add relative link | Vlad Doster | |
2020-05-15 | Update config.h | Vlad Doster | |
2020-05-15 | Update config.h | Vlad Doster | |
2020-05-15 | formatting | Vlad Doster | |
2020-05-12 | Merge pull request #66 from mokulus/stack-fix | Luke Smith | |
Fix crashes when stack is empty | |||
2020-05-12 | Fix crashes when stack is empty | MateuszOkulus | |
2020-05-11 | Merge pull request #64 from cm-mcl/master | Luke Smith | |
Update dwm.1 | |||
2020-05-11 | Update dwm.1 | cm-mcl | |
Fix typo on line 32 | |||
2020-05-08 | borders red and non-transparent | Luke Smith | |
2020-05-08 | v to move to master | Luke Smith | |
2020-05-07 | can shift click modules, | Luke Smith | |
shift right click opens config | |||
2020-05-06 | commenting unused funcs to avoid build warnings | Luke Smith | |
2020-05-06 | move only by one minute | Luke Smith | |
2020-05-06 | that was removed | Luke Smith | |
2020-05-05 | Merge pull request #57 from aajonusonline/master | Luke Smith | |
swallow patch: unfullscreen client and reset focus | |||
2020-05-05 | don't swallow if window floats | Luke Smith | |
2020-05-05 | fixes previous patch | Aajonus Online | |
2020-05-05 | swallow patch: unfullscreen client and reset focus | Aajonus Online | |
2020-05-05 | xev doesn't swallow | Luke Smith | |
2020-05-05 | begin man udpates | Luke Smith | |
2020-05-05 | Merge pull request #56 from aajonusonline/master | Luke Smith | |
swallow patch: fix ignoring of noswallow in config | |||
2020-05-05 | swallow patch: fix ignoring of noswallow in config | Aajonus Online | |
2020-05-03 | super+shift+g/; to send to prev/next window | Luke Smith | |
i'll merge the functions later maybe lol | |||
2020-05-03 | I think that for the left-hand binds, it's best to | Luke Smith | |
spread out binds and not use shift. For right-handed people, most of which prefer right shift, it is much easier to mod+shift with the right hand than left. | |||
2020-05-03 | dwm.png rm'd, me added to lic | Luke Smith | |
2020-05-02 | use blue | Luke Smith | |
2020-05-02 | causes fewer problems | Luke Smith | |
2020-04-26 | expandible scratchpad patch | Luke Smith | |
super+shift+return for dropdown terminal super+' for dropdown calculator | |||
2020-04-26 | super+shift+q runs sysact | Luke Smith | |
2020-04-26 | old scratchpad patch removed | Luke Smith | |
2020-04-26 | Merge branch 'stuff' | Luke Smith | |
2020-04-26 | Merge branch 'master' of github.com:LukeSmithxyz/dwm into HEAD | Luke Smith | |
2020-04-26 | don't necessarily restart dwmblocks | Luke Smith | |
2020-04-26 | gitignore | Luke Smith | |
2020-04-26 | big binds change | Luke Smith | |
2020-04-25 | Merge pull request #42 from AlexSyssoyev/patch-1 | Luke Smith | |
Change bg address on xcompmgr toggle | |||
2020-04-25 | Change bg address on xcompmgr toggle | Alexei Syssoyev | |
2020-04-25 | dwm 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. |