summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2025-05-27config.h: font changedSuleyman Farajli
2025-05-27README updatedSuleyman Farajli
2025-05-27small style change: void added to a function as argumentSuleyman Farajli
2025-05-27br script keybind addedSuleyman Farajli
2025-05-27gitignore updatedSuleyman Farajli
2025-05-27config.h: small style updateSuleyman Farajli
2025-05-27man page updatedSuleyman Farajli
2025-05-27README updatedSuleyman Farajli
2025-05-27README updatedSuleyman Farajli
2025-05-27README updatedSuleyman Farajli
2025-05-27makefile dist updatedSuleyman Farajli
2025-05-27dwm.png removedSuleyman Farajli
2025-05-27dmenu prompt color changedSuleyman Farajli
2025-05-27bug fix and code cleaned in focusstackSuleyman Farajli
2025-05-27scratchpad patch removedSuleyman Farajli
2025-05-27somethingSuleyman Farajli
2025-05-27keybind to change wallpaper addedSuleyman Farajli
2025-05-27togglefocusfloating keybind changedSuleyman Farajli
2025-05-27focusstack function was made more readableSuleyman Farajli
2025-05-27togglefocusfloat bug fixSuleyman Farajli
2025-05-27float mode focus and tiling mode focus seperatedSuleyman Farajli
2025-05-27install prefix can be selectedSuleyman Farajli
2025-05-27focusmaster keybind changedSuleyman Farajli
2025-05-27small style changeSuleyman Farajli
2025-05-27gitignore updatedSuleyman Farajli
2025-05-27automatically exits fullscreen right when another window is spawnedSuleyman Farajli
2025-05-27focusmaster keybind changedSuleyman Farajli
2025-05-27REMOVED: automatically exits fullscreen when another window is spawnedSuleyman Farajli
2025-05-27focusmaster patched and keybinds addedSuleyman Farajli
2025-05-27automatically exits fullscreen when another window is spawnedSuleyman Farajli
2025-05-27Makefile updatedSuleyman Farajli
2025-05-27gitignore updatedSuleyman Farajli
2025-05-27master stack ratio changedSuleyman Farajli
2025-05-27focus on fullscreen enabledSuleyman Farajli
2025-05-27useless stuff removed from config.hSuleyman Farajli
2025-05-27setborderpx patched and keybinds addedSuleyman Farajli
2025-05-27scratchpad patched and keybinds addedSuleyman Farajli
2025-05-27moveresize patched and keybinds changedSuleyman Farajli
2025-05-27fullgaps patched and keybinds addedSuleyman Farajli
2025-05-27floating windows appear in the middle of the screenSuleyman Farajli
2025-05-27actualfullscreen patchedSuleyman Farajli
2025-05-27config.def.h removedSuleyman Farajli
2025-05-27layout icon and window name was removed from the barSuleyman Farajli
2025-05-27volume, brightness keybinds added and other keybinds changedSuleyman Farajli
2025-05-27monocle layout was removedSuleyman Farajli
2025-05-27gitignore addedSuleyman Farajli
2025-05-27first commitSuleyman Farajli
2024-03-19bump version to 6.5Hiltjo Posthuma
2023-09-22Makefile: remove the options targetHiltjo Posthuma
The Makefile used to suppress output (by using @), so this target made sense at the time. But the Makefile should be simple and make debugging with less abstractions or fancy printing. The Makefile was made verbose and doesn't hide the build output, so remove this target. Prompted by a question on the mailing list about the options target.
2023-04-09restore SIGCHLD sighandler to default before spawning a programHiltjo Posthuma
From sigaction(2): A child created via fork(2) inherits a copy of its parent's signal dispositions. During an execve(2), the dispositions of handled signals are reset to the default; the dispositions of ignored signals are left unchanged. This refused to start directly some programs from configuring in config.h: static Key keys[] = { MODKEY, XK_o, spawn, {.v = cmd } }, }; Some reported programs that didn't start were: mpv, anki, dmenu_extended. Reported by pfx. Initial patch suggestion by Storkman.