aboutsummaryrefslogtreecommitdiffstats
path: root/src/wm/monitor.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/wm/monitor.h')
-rw-r--r--src/wm/monitor.h15
1 files changed, 15 insertions, 0 deletions
diff --git a/src/wm/monitor.h b/src/wm/monitor.h
new file mode 100644
index 0000000..e09935e
--- /dev/null
+++ b/src/wm/monitor.h
@@ -0,0 +1,15 @@
1
2#pragma once
3
4#include "../core/types.h"
5
6Monitor *createmon(void);
7void cleanupmon(Monitor *mon);
8
9Monitor *recttomon(int x, int y, int w, int h);
10Monitor *wintomon(Window w);
11void sendmon(Client *c, Monitor *m);
12
13int updategeom(void);
14void updatebarpos(Monitor *m);
15void resizebarwin(Monitor *m);