X-Git-Url: https://git.danieliu.xyz/?a=blobdiff_plain;f=dwm.h;h=236c780dc42fedebdd52d5da8041a864f2678657;hb=f2512243f494915fe91ebb5e67ac94abd5b528c6;hp=8f5ffdb22a4517971dd52cdbd5058bde6f07856b;hpb=77044e876511f51c34bde379d89e2de754707ee6;p=dwm.git diff --git a/dwm.h b/dwm.h index 8f5ffdb..236c780 100644 --- a/dwm.h +++ b/dwm.h @@ -81,7 +81,7 @@ extern int wax, way, wah, waw; /* windowarea geometry */ extern unsigned int bh, blw, bpos; /* bar height, bar layout label width, bar position */ extern unsigned int ntags, numlockmask; /* number of tags, numlock mask */ extern void (*handler[LASTEvent])(XEvent *); /* event handler */ -extern Atom wmatom[WMLast], netatom[NetLast]; +extern Atom dwmtags, wmatom[WMLast], netatom[NetLast]; extern Bool selscreen, *seltag; /* seltag is array of Bool */ extern Client *clients, *sel, *stack; /* global client list and stack */ extern Cursor cursor[CurLast]; @@ -116,7 +116,7 @@ void grabkeys(void); /* grab all keys defined in config.h */ /* layout.c */ void arrange(void); /* arranges all windows depending on the layout in use */ void focusclient(const char *arg); /* focuses next(1)/previous(-1) visible client */ -const char *getsymbol(void); /* returns True symbol of enabled layout */ +const char *getsymbol(void); /* returns symbol of enabled layout */ Bool isfloating(void); /* returns True if floating layout is enabled */ Bool isarrange(void (*func)()); /* returns True if func is the layout function in use */ void initlayouts(void); /* initialize layout array */