summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
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
2020-04-14old junk rmdLuke Smith
2020-04-14swallow patchLuke Smith
2020-04-14Merge branch 'kronikpillow-master'Luke Smith
2020-04-14Merge branch 'master' of https://github.com/kronikpillow/dwm into ↵Luke Smith
kronikpillow-master
2020-04-14bindings and documentation cleanupLuke Smith
2020-04-14sysact to replace system bindsLuke Smith
2020-04-14dwmc removedLuke Smith
2020-04-14pamixer for quicker audio commandsLuke Smith
2020-04-14lolLuke Smith
2020-04-14updated vanitygaps with latest fixes from original authorKronikPillow
2020-04-13Merge branch 'master' of git://git.suckless.org/dwmLuke Smith
2020-04-13dox on monitor commandsLuke Smith
2020-04-13arrows to tag or focus monitorsLuke Smith
2020-04-13use pidofLuke Smith
2020-04-13suppress if no dwmblocks to killLuke Smith
2020-04-13removing barpadding patchLuke Smith
2020-04-13readme fixes/switchesLuke Smith
2020-04-13scroll through on tagsLuke Smith
2020-04-13vanitygaps patch/fix and new & reorganized layoutsLuke Smith
2020-04-13note on statusbar clickabilityLuke Smith
2020-04-13clickable statuscmd patch with dwmblocksLuke Smith
2020-04-13updates to restart/quit cmdsLuke Smith
2020-04-11colorscheme notesLuke Smith
2020-04-10startup rmdLuke Smith
2020-04-10kill -HUP pid to restart, also mod+RLuke Smith
2020-04-09pulse documentation changesLuke Smith
2020-04-09Merge branch 'master' of github.com:LukeSmithxyz/dwmLuke Smith
2020-04-09only show active tagsLuke Smith
2020-04-09start `startup` script if it existsLuke Smith
2020-04-09mod+c for calculatorLuke Smith
2020-04-09hardcoding audio systemLuke Smith
2020-04-04Merge pull request #27 from NikkiSatmaka/NikkiSatmakaLuke Smith
add xf86brightness up and down
2020-04-04add xf86brightness up and downNikki Satmaka
add xf86brightness up and down using xbacklight
2020-04-03config.mk: fix POSIX_C_SOURCE macro for feature test for snprintf()Hiltjo Posthuma
The feature test was incorrect: _POSIX_C_SOURCE=2 "The value 2 or greater additionally exposes definitions for POSIX.2-1992." http://man7.org/linux/man-pages/man7/feature_test_macros.7.html A higher value is needed (atleast 1995): https://pubs.opengroup.org/onlinepubs/9699919799/functions/snprintf.html FreeBSD feature test macro: on https://github.com/freebsd/freebsd/blob/master/include/stdio.h line 297 This was already fixed in dmenu. This fixes a warning on FreeBSD, reported by Plasmoduck on IRC, thanks.
2020-04-01Merge branch 'master' of github.com:LukeSmithxyz/dwmLuke Smith
2020-04-01Merge pull request #24 from jonmed/fix-readme-typoLuke Smith
Fix libxft-bgra name in README
2020-04-01Fix libxft-bgra name in READMEJonatas Medeiros
2020-03-31renamed to webcamLuke Smith
2020-03-31statusbar infoLuke Smith
2020-03-31documentation changesLuke Smith
2020-03-29lmc required for alsa/pulse integrationLuke Smith
2020-03-29no mpv cacheLuke Smith
2020-03-29only cycle through active tagsLuke Smith
2020-03-29gimp starts on own tagLuke Smith
2020-03-26dumb abook hackLuke Smith
2020-03-26dox changeLuke Smith