summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2020-08-27Merge pull request #99 from hamidout/mic-muteLuke Smith
Added mute mic functionality
2020-08-27Merge pull request #103 from Spooky309/masterLuke Smith
Don't try and signal dwmblocks on OpenBSD
2020-08-09dwmblocks doesn't receive signals on OpenBSD, OpenBSD doesn't implement ↵skeletal738
sigqueue. Got rid of these.
2020-07-26added binding to Mic-Mute key(mutes mic, duh)hamidout
2020-06-07snippetsLuke Smith
2020-06-03Merge pull request #79 from jbensmann/masterLuke Smith
fixed gaps in centeredfloatingmaster layout
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.