aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Merge pull request #139 from kronikpillow/mergeLuke Smith2020-12-151-2/+2
|\ | | | | small fix
| * fix deck layout indicator to it's originalKronikPillow2020-12-151-1/+1
| |
| * fix 2nd scratchpad's name to match given rule in rules sectionKronikPillow2020-12-151-1/+1
|/
* fix #138Luke Smith2020-12-111-6/+6
|
* dumb fixLuke Smith2020-11-141-6/+6
|
* Merge branch 'master' of github.com:LukeSmithxyz/dwmLuke Smith2020-11-071-23/+19
|\
| * Merge pull request #129 from dawidpotocki/shiftview-scratchpadsLuke Smith2020-11-071-23/+19
| |\ | | | | | | Fix shiftview behavior with scratchpads patch
| | * Fix shiftview behavior with scratchpads patchDawid Potocki2020-11-071-23/+19
| |/ | | | | | | Closes #80
* / rm xrdb patch to xresources to load non-color varsLuke Smith2020-11-075-88/+117
|/
* Merge pull request #120 from pniedzwiedzinski/patch-1Luke Smith2020-10-131-1/+1
|\ | | | | mutt-wizard 3.0
| * mutt-wizard 3.0Patryk Niedźwiedziński2020-10-131-1/+1
|/
* Merge pull request #117 from Ultrahalf/masterLuke Smith2020-10-021-0/+33
|\ | | | | Adds to dwm.1
| * Fix typosMuhammad Althaf Rahman2020-10-021-3/+3
| |
| * Adds to dwm.1Muhammad Althaf Rahman2020-10-021-0/+33
|/
* Merge branch 'temetvince-refactor-terminal-strings-into-constant' into masterLuke Smith2020-09-121-20/+24
|\
| * renamed to TERMCLASSLuke Smith2020-09-121-2/+2
| |
| * Merge branch 'refactor-terminal-strings-into-constant' of ↵Luke Smith2020-09-121-20/+24
|/| | | | | | | https://github.com/temetvince/dwm into temetvince-refactor-terminal-strings-into-constant
| * Refactored hard coded st terminal strings into a constanttemetvince2020-09-111-20/+24
| |
* | Merge branch 'master' of github.com:LukeSmithxyz/dwm into masterLuke Smith2020-09-123-8/+24
|\|
| * Merge pull request #107 from asparagusfox/patch-1Luke Smith2020-09-081-1/+1
| |\ | | | | | | "mw sync" is the new command to sync mail
| | * "mw sync" is the new command to sync mailAxel Baker-Bates2020-09-081-1/+1
| |/
| * Merge pull request #74 from aajonusonline/patch-1Luke Smith2020-08-271-4/+11
| |\ | | | | | | swallow patch: add FreeBSD support
| | * swallow patch: add FreeBSD supportaajonusonline2020-05-181-4/+11
| | | | | | | | | | | | patch from this commit: https://github.com/deadpixi/deadpixi-dwm/commit/42a798c34b4a4182599fc09f661c3b826a77bd54
| * | Merge pull request #99 from hamidout/mic-muteLuke Smith2020-08-271-0/+1
| |\ \ | | | | | | | | Added mute mic functionality
| | * | added binding to Mic-Mute key(mutes mic, duh)hamidout2020-07-261-0/+1
| | | |
| * | | Merge pull request #103 from Spooky309/masterLuke Smith2020-08-272-1/+9
| |\ \ \ | | |/ / | |/| | Don't try and signal dwmblocks on OpenBSD
| | * | dwmblocks doesn't receive signals on OpenBSD, OpenBSD doesn't implement ↵skeletal7382020-08-092-1/+9
| |/ / | | | | | | | | | sigqueue. Got rid of these.
| * | Merge pull request #79 from jbensmann/masterLuke Smith2020-06-031-2/+2
| |\ \ | | | | | | | | fixed gaps in centeredfloatingmaster layout
| | * | fixed gaps in centeredfloatingmaster layoutJohannes Bensmann2020-06-011-2/+2
| | |/ | | | | | | | | | the master area moved up when increasing outer gaps
* | / snippetsLuke Smith2020-06-071-1/+1
|/ /
* | ui fixLuke Smith2020-06-021-3/+1
| |
* | funding file for github sponsorsLuke Smith2020-06-021-0/+5
| |
* | Merge branch 'master' of git://git.suckless.org/dwmLuke Smith2020-05-191-5/+6
|\ \ | |/ |/|
| * dwm crashes when opening 50+ clients (tile layout)bakkeby2020-04-251-2/+4
| | | | | | | | | | | | | | | | 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.
| * drawbar: Don't shadow sw globalChris Down2020-04-221-4/+4
| | | | | | | | | | | | | | 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.
| * getatomprop: Add forward declarationChris Down2020-04-221-0/+1
| | | | | | | | | | No functional changes, but for every other function we have a forward declaration here. getatomprop should be no exception.
| * setmfact: Unify bounds for compile-time and runtime mfactChris Down2020-04-201-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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.
* | Merge pull request #68 from vladdoster/patch-1Luke Smith2020-05-162-17/+17
|\ \ | | | | | | formatting
| * | add relative linkVlad Doster2020-05-151-1/+1
| | |
| * | Update config.hVlad Doster2020-05-151-8/+8
| | |
| * | Update config.hVlad Doster2020-05-151-7/+7
| | |
| * | formattingVlad Doster2020-05-151-1/+1
|/ /
* | Merge pull request #66 from mokulus/stack-fixLuke Smith2020-05-121-2/+2
|\ \ | | | | | | Fix crashes when stack is empty
| * | Fix crashes when stack is emptyMateuszOkulus2020-05-121-2/+2
|/ /
* | Merge pull request #64 from cm-mcl/masterLuke Smith2020-05-111-1/+1
|\ \ | | | | | | Update dwm.1
| * | Update dwm.1cm-mcl2020-05-111-1/+1
|/ / | | | | Fix typo on line 32
* | borders red and non-transparentLuke Smith2020-05-082-1/+3
| |
* | v to move to masterLuke Smith2020-05-082-3/+4
| |
* | can shift click modules,Luke Smith2020-05-071-0/+2
| | | | | | | | shift right click opens config
* | commenting unused funcs to avoid build warningsLuke Smith2020-05-061-71/+71
| |