diff options
| author | TheSiahxyz <164138827+TheSiahxyz@users.noreply.github.com> | 2024-06-04 21:07:28 +0900 |
|---|---|---|
| committer | TheSiahxyz <164138827+TheSiahxyz@users.noreply.github.com> | 2024-06-04 21:07:28 +0900 |
| commit | 7f8828a8a6aa189014571e66d012c9962777c719 (patch) | |
| tree | 4872aea6038451c3d2ed79926b6b663c426347c8 /dwm/drw.h | |
| parent | 898331c11aa83917359c5cb2652b65b73bafa220 (diff) | |
Updates
Diffstat (limited to 'dwm/drw.h')
| -rw-r--r-- | dwm/drw.h | 34 |
1 files changed, 17 insertions, 17 deletions
@@ -1,15 +1,15 @@ /* 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, ColMark }; /* Clr scheme index */ @@ -17,17 +17,17 @@ enum { ColFg, ColBg, ColBorder, ColMark }; /* Clr scheme index */ typedef XftColor Clr; typedef struct { - unsigned int w, h; - Display *dpy; - int screen; - Window root; - Visual *visual; - unsigned int depth; - Colormap cmap; - Drawable drawable; - GC gc; - Clr *scheme; - Fnt *fonts; + unsigned int w, h; + Display *dpy; + int screen; + Window root; + Visual *visual; + unsigned int depth; + Colormap cmap; + Drawable drawable; + GC gc; + Clr *scheme; + Fnt *fonts; } Drw; /* Drawable abstraction */ |
