summaryrefslogtreecommitdiff
path: root/drw.h
diff options
context:
space:
mode:
authorMikkel Thestrup <mikkel@mithe.dk>2026-01-29 14:48:35 +0100
committerMikkel Thestrup <mikkel@mithe.dk>2026-01-31 21:39:52 +0100
commitb623bf627e9201c36068980eee6f1a4d2ecdca67 (patch)
tree4968d1baac0712b01ba8e4717a3a40fcf803e5d7 /drw.h
parent081021d5bd47c52dcaf56fc53f64a34b12c67f2c (diff)
downloaddwm-b623bf627e9201c36068980eee6f1a4d2ecdca67.tar.gz
dwm-b623bf627e9201c36068980eee6f1a4d2ecdca67.zip
style(*): Style changeHEADmaster
Diffstat (limited to 'drw.h')
-rw-r--r--drw.h28
1 files changed, 14 insertions, 14 deletions
diff --git a/drw.h b/drw.h
index bdbf950..ea76849 100644
--- a/drw.h
+++ b/drw.h
@@ -1,29 +1,29 @@
/* See LICENSE file for copyright and license details. */
typedef struct {
- Cursor cursor;
+ Cursor cursor;
} Cur;
typedef struct Fnt {
- Display *dpy;
- unsigned int h;
- XftFont *xfont;
- FcPattern *pattern;
- struct Fnt *next;
+ Display *dpy;
+ unsigned int h;
+ XftFont *xfont;
+ FcPattern *pattern;
+ struct Fnt *next;
} Fnt;
enum { ColFg, ColBg, ColBorder }; /* Clr scheme index */
typedef XftColor Clr;
typedef struct {
- unsigned int w, h;
- Display *dpy;
- int screen;
- Window root;
- Drawable drawable;
- GC gc;
- Clr *scheme;
- Fnt *fonts;
+ unsigned int w, h;
+ Display *dpy;
+ int screen;
+ Window root;
+ Drawable drawable;
+ GC gc;
+ Clr *scheme;
+ Fnt *fonts;
} Drw;
/* Drawable abstraction */