aboutsummaryrefslogtreecommitdiffstats
path: root/src/core (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Switch from c99 to c23 standardHEADmasterFilip Wandzio2026-01-142-185/+192
| | | | | | | | Create sketch for manual testing Disable redundant functions The following functions: movemouse, resizemouse, togglefloating, sendmon, pop, quit and zoom shall be removed. Specific windows (loading screens, notifications) will remain floating but there is no need in a window manager for manually toggling the floating behavior. Killing the session is no longer possible via keybinding. Insted I suggested adding a keybinding for reseting dwm and switching to TTY if it fails after all.
* Split monolithic dwm.h into modular headers and group them by it's ↵Filip Wandzio2025-12-304-3/+182
| | | | | | | | functionalities The new plan of refactoring this project is to split entire monolithic codebase into separate, (kind of) independent modules. This will help with understanding the code by turning off modules and deciding which ones require some work. Signed-off-by: Filip Wandzio <contact@philw.dev>
* Add hot restart patchFilip Wandzio2025-12-282-0/+7
|
* Enforce code style, reformat projectFilip Wandzio2025-09-082-2298/+2413
| | | | Signed-off-by: Filip Wandzio <contact@philw.dev>
* feat: Refactor dwm.c for modularity, add dwm.h header file, switch compiler ↵philw2025-04-242-428/+412
| | | | | | | | | | | | to tcc Refactored dwm.c to improve code organization and maintainability Added dwm.h header file for better modularity and to define common declarations Changed the compiler to TCC for faster compilation during development. Signed-off-by: philw <dscr@duck.com>
* Refactor the projectphilw2025-04-151-0/+2735
Refactored core logic to improve readability and maintainability. Documented the 'transient.c' file to provide clear explanations of its purpose and functions. Updated the 'util.c' file with necessary comments and improvements to existing code. Documented the 'util.h' header file to clarify function prototypes and usage. This update should improve the overall code quality and make it easier for future development. Signed-off-by: philw <dscr@duck.com>