Age | Commit message (Collapse) | Author | |
---|---|---|---|
2025-05-27 | README updated | Suleyman Farajli | |
2025-05-27 | small style change: void added to a function as argument | Suleyman Farajli | |
2025-05-27 | br script keybind added | Suleyman Farajli | |
2025-05-27 | gitignore updated | Suleyman Farajli | |
2025-05-27 | config.h: small style update | Suleyman Farajli | |
2025-05-27 | man page updated | Suleyman Farajli | |
2025-05-27 | README updated | Suleyman Farajli | |
2025-05-27 | README updated | Suleyman Farajli | |
2025-05-27 | README updated | Suleyman Farajli | |
2025-05-27 | makefile dist updated | Suleyman Farajli | |
2025-05-27 | dwm.png removed | Suleyman Farajli | |
2025-05-27 | dmenu prompt color changed | Suleyman Farajli | |
2025-05-27 | bug fix and code cleaned in focusstack | Suleyman Farajli | |
2025-05-27 | scratchpad patch removed | Suleyman Farajli | |
2025-05-27 | something | Suleyman Farajli | |
2025-05-27 | keybind to change wallpaper added | Suleyman Farajli | |
2025-05-27 | togglefocusfloating keybind changed | Suleyman Farajli | |
2025-05-27 | focusstack function was made more readable | Suleyman Farajli | |
2025-05-27 | togglefocusfloat bug fix | Suleyman Farajli | |
2025-05-27 | float mode focus and tiling mode focus seperated | Suleyman Farajli | |
2025-05-27 | install prefix can be selected | Suleyman Farajli | |
2025-05-27 | focusmaster keybind changed | Suleyman Farajli | |
2025-05-27 | small style change | Suleyman Farajli | |
2025-05-27 | gitignore updated | Suleyman Farajli | |
2025-05-27 | automatically exits fullscreen right when another window is spawned | Suleyman Farajli | |
2025-05-27 | focusmaster keybind changed | Suleyman Farajli | |
2025-05-27 | REMOVED: automatically exits fullscreen when another window is spawned | Suleyman Farajli | |
2025-05-27 | focusmaster patched and keybinds added | Suleyman Farajli | |
2025-05-27 | automatically exits fullscreen when another window is spawned | Suleyman Farajli | |
2025-05-27 | Makefile updated | Suleyman Farajli | |
2025-05-27 | gitignore updated | Suleyman Farajli | |
2025-05-27 | master stack ratio changed | Suleyman Farajli | |
2025-05-27 | focus on fullscreen enabled | Suleyman Farajli | |
2025-05-27 | useless stuff removed from config.h | Suleyman Farajli | |
2025-05-27 | setborderpx patched and keybinds added | Suleyman Farajli | |
2025-05-27 | scratchpad patched and keybinds added | Suleyman Farajli | |
2025-05-27 | moveresize patched and keybinds changed | Suleyman Farajli | |
2025-05-27 | fullgaps patched and keybinds added | Suleyman Farajli | |
2025-05-27 | floating windows appear in the middle of the screen | Suleyman Farajli | |
2025-05-27 | actualfullscreen patched | Suleyman Farajli | |
2025-05-27 | config.def.h removed | Suleyman Farajli | |
2025-05-27 | layout icon and window name was removed from the bar | Suleyman Farajli | |
2025-05-27 | volume, brightness keybinds added and other keybinds changed | Suleyman Farajli | |
2025-05-27 | monocle layout was removed | Suleyman Farajli | |
2025-05-27 | gitignore added | Suleyman Farajli | |
2025-05-27 | first commit | Suleyman Farajli | |
2024-03-19 | bump version to 6.5 | Hiltjo Posthuma | |
2023-09-22 | Makefile: remove the options target | Hiltjo 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-09 | restore SIGCHLD sighandler to default before spawning a program | Hiltjo 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. | |||
2023-02-17 | config.mk: update to _XOPEN_SOURCE=700L | NRK | |
SA_NOCLDWAIT is marked as XSI in the posix spec [0] and FreeBSD and NetBSD seems to more be strict about the feature test macro [1]. so update the macro to use _XOPEN_SOURCE=700L instead, which is equivalent to _POSIX_C_SOURCE=200809L except that it also unlocks the X/Open System Interfaces. [0]: https://pubs.opengroup.org/onlinepubs/9699919799/basedefs/signal.h.html#tag_13_42 [1]: https://lists.suckless.org/dev/2302/35111.html Tested on: * NetBSD 9.3 (fixed). * FreeBSD 13 (fixed). * Void Linux musl. * Void Linux glibc. * OpenBSD 7.2 (stable). * Slackware 11. Reported-by: beastie <pufferfish@riseup.net> |