summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2020-06-02ui fixLuke Smith
2020-06-02funding file for github sponsorsLuke Smith
2020-06-01fixed gaps in centeredfloatingmaster layoutJohannes Bensmann
the master area moved up when increasing outer gaps
2020-05-19Merge branch 'master' of git://git.suckless.org/dwmLuke Smith
2020-05-18swallow patch: add FreeBSD supportaajonusonline
patch from this commit: https://github.com/deadpixi/deadpixi-dwm/commit/42a798c34b4a4182599fc09f661c3b826a77bd54
2020-05-16Merge pull request #68 from vladdoster/patch-1Luke Smith
formatting
2020-05-15add relative linkVlad Doster
2020-05-15Update config.hVlad Doster
2020-05-15Update config.hVlad Doster
2020-05-15formattingVlad Doster
2020-05-12Merge pull request #66 from mokulus/stack-fixLuke Smith
Fix crashes when stack is empty
2020-05-12Fix crashes when stack is emptyMateuszOkulus
2020-05-11Merge pull request #64 from cm-mcl/masterLuke Smith
Update dwm.1
2020-05-11Update dwm.1cm-mcl
Fix typo on line 32
2020-05-08borders red and non-transparentLuke Smith
2020-05-08v to move to masterLuke Smith
2020-05-07can shift click modules,Luke Smith
shift right click opens config
2020-05-06commenting unused funcs to avoid build warningsLuke Smith
2020-05-06move only by one minuteLuke Smith
2020-05-06that was removedLuke Smith
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-05xev doesn't swallowLuke Smith
2020-05-05begin man udpatesLuke Smith
2020-05-05Merge pull request #56 from aajonusonline/masterLuke Smith
swallow patch: fix ignoring of noswallow in config
2020-05-05swallow patch: fix ignoring of noswallow in configAajonus Online
2020-05-03super+shift+g/; to send to prev/next windowLuke Smith
i'll merge the functions later maybe lol
2020-05-03I think that for the left-hand binds, it's best toLuke 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-03dwm.png rm'd, me added to licLuke Smith
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-26super+shift+q runs sysactLuke Smith
2020-04-26old scratchpad patch removedLuke Smith
2020-04-26Merge branch 'stuff'Luke Smith
2020-04-26Merge branch 'master' of github.com:LukeSmithxyz/dwm into HEADLuke Smith
2020-04-26don't necessarily restart dwmblocksLuke Smith
2020-04-26gitignoreLuke Smith
2020-04-26big binds changeLuke Smith
2020-04-25Merge pull request #42 from AlexSyssoyev/patch-1Luke Smith
Change bg address on xcompmgr toggle
2020-04-25Change bg address on xcompmgr toggleAlexei Syssoyev
2020-04-25dwm 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.
2020-04-22drawbar: Don't shadow sw globalChris Down
This jarred me a bit while reading the code, since "sw" usually refers to the global screen geometry, but in drawbar() only it refers to text-related geometry. Renaming it makes it more obvious that these are not related.
2020-04-22getatomprop: Add forward declarationChris Down
No functional changes, but for every other function we have a forward declaration here. getatomprop should be no exception.
2020-04-20setmfact: Unify bounds for compile-time and runtime mfactChris Down
There are two places that mfact can be set: - In the mfact global, which is defined at compile time and passed into m->mfact during monitor setup. No bounds checks are performed, but the comment alongside it says that valid values are [0.05..0.95]: static const float mfact = 0.55; /* factor of master area size [0.05..0.95] */ - By setmfact, which adjusts m->mfact at runtime. It also does some minimum and maximum bounds checks, allowing [0.1..0.9]. Values outside of that range are ignored, and mfact is not adjusted. These different thresholds mean that one cannot setmfact 0.95 or 0.05, despite the comment above that lists the legal range for mfact. Clarify this by enforcing the same bounds in setmfact at runtime as those listed for mfact at compile time.
2020-04-17Merge pull request #36 from jlaw/patch-1Luke Smith
fix: Typo; -sb assigned the wrong color
2020-04-17fix: Typo; -sb assigned the wrong colorJackson Law
2020-04-14readme updatesLuke Smith