From 4c90d1d9e4092f9ee0106d316829144653a276ea Mon Sep 17 00:00:00 2001 From: Filip Wandzio Date: Tue, 30 Dec 2025 02:45:11 +0100 Subject: Split monolithic dwm.h into modular headers and group them by it's 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 --- src/ui/systray.h | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 src/ui/systray.h (limited to 'src/ui/systray.h') diff --git a/src/ui/systray.h b/src/ui/systray.h new file mode 100644 index 0000000..ad78f58 --- /dev/null +++ b/src/ui/systray.h @@ -0,0 +1,12 @@ + +#pragma once + +#include "../core/types.h" + +void updatesystray(void); +void removesystrayicon(Client *i); +void updatesystrayicongeom(Client *i, int w, int h); +void updatesystrayiconstate(Client *i, XPropertyEvent *ev); + +Client *wintosystrayicon(Window w); +Monitor *systraytomon(Monitor *m); -- cgit v1.2.3 Filip Wandzio <contact@philw.dev>
aboutsummaryrefslogtreecommitdiffstats
Commit message (Expand)AuthorFilesLines
2025-11-21Bump dependencies, update matrix sectionFilip Wandzio3-23/+46
2025-11-02Implement unit testing with vitestFilip Wandzio8-58/+125
2025-11-01Convert hex to hslFilip Wandzio1-7/+7
2025-11-01Adjust color schemeFilip Wandzio1-1/+4
2025-10-28Bump project dependecies, fix structural elements heading issueFilip Wandzio4-17/+17