summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2021-09-23dwm: change scratchpads, termcmd to stzachir
2021-08-25Revert to 6.2 + patches, rather than arbitrary git versionzachir
2021-08-18remove volsv from makefilezachir
2021-08-18Remove volsv (managed separately)zachir
2021-08-04Update volsvzachir
2021-08-04Fix Rules issue (NUL L), add sxhkd restart signal, change default term to urxvtczachir
2021-08-04Fix dwm signal on linuxzachir
2021-07-31Use hyper instead of alt, remove bluetooth scratchpadzachir
2021-06-25Commend out section of sigdwmblocks() that uses sigqueue (not available on ↵zachir
OpenBSD)
2021-06-25Change font from mononoki Nerd Font to mononoki Nerd Font Monozachir
2021-06-17Add togglescratch function to dwmc to toggle scratchpadszachir
2021-06-17Use class for scratchpad instead of title, add ping scratchpad, and binding ↵zachir
for tcl layout
2021-06-17Add triple column layoutzachir
2021-06-04Change scratchpads to use Alacritty, add scratchpad for 'ping', don't use ↵ZachIR
tabbed, and fix env issue with neomutt
2021-03-25Add ability to ignore resize hints for terminalszachir
2021-03-24Update patch.diffzachir
2021-03-24Change back to pulsemixer (pipewire is finally working again)zachir
2021-03-23Change pulsemixer to alsamixer, add neomutt scratchpad, add rule for Carlazachir
2021-03-21Comment out unused command definitionszachir
2021-03-20Add scratchpads patchzachir
2021-03-20Add scratchpads (htop, term, pulsemixer, bluetoothctl, ncmpcpp)zachir
2021-02-06Re-add patchzachir
2021-02-06Move patch filezachir
2021-02-06Remove unecessary rej filezachir
2021-02-06Add a gitignore filezachir
2021-02-06Update to follow upstreamzachir
2021-02-05Rebind incnmaster and setcfactzachir
2021-02-05Update upstream volsvzachir
2021-01-31Update volsv againzachir
2021-01-31Use updated volsvzachir
2021-01-31Fix double termcmd declaration issuezachir
2021-01-31Install dwm desktop file toozachir
2021-01-31Change font from 'mononoki' to 'mononoki Nerd Font', remove dependency on ↵zachir
sxhkd for keybindings
2021-01-31Add desktop filezachir
2021-01-31Update volsv scriptzachir
2020-12-30Make unified patchZachIR
2020-12-30Update config.hZachIR
2020-12-12Move some keybindings to sxhkd (leave volsv, just uncomment config lines to ↵zachir
use as normal)
2020-12-11Reorganize, switch back to st, etc.zachir
2020-12-11Reconfigure dwm to use .config/dwm instead of .dwm/zachir
2020-11-11Update to latest configzachir
2020-10-09Update dwm configzachir
2020-09-13Update repo to 09132020ZachIR
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-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.
2019-02-02Prepare 6.2 release.Anselm R Garbe
2018-06-02pledge: add rpath promise for the ugly Xft font fallbackHiltjo Posthuma
2018-06-02Makefile: just show the compiler outputHiltjo Posthuma
Don't be fancy and just show the actual output so debugging is simpler.
2018-06-02Do not strip at link stageKlemens Nanni
Building with debug symbols is worthless unless LDFLAGS are manually adjusted as well.
2018-05-25Pledge on OpenBSDKlemens Nanni