X-Git-Url: https://jasonwoof.com/gitweb/?a=blobdiff_plain;ds=sidebyside;f=dwm.h;h=f527a3fe4b172bd0fe9d2b54cd808d323386b05a;hb=86953bd68249662b5d7a9ae6741744ab8bf30aa1;hp=509b845a5794323d3e7d257c56ce86b46eaee2c6;hpb=10d13f01ff764ba0e875adf5d2b83c49aa08d148;p=dwm.git diff --git a/dwm.h b/dwm.h index 509b845..f527a3f 100644 --- a/dwm.h +++ b/dwm.h @@ -82,7 +82,7 @@ extern unsigned int bh, blw, bpos; /* bar height, bar layout label width, bar p extern unsigned int ntags, numlockmask; /* number of tags, numlock mask */ extern void (*handler[LASTEvent])(XEvent *); /* event handler */ extern Atom dwmconfig, wmatom[WMLast], netatom[NetLast]; -extern Bool selscreen, *seltag; /* seltag is array of Bool */ +extern Bool selscreen, *seltags; /* seltags is array of Bool */ extern Client *clients, *sel, *stack; /* global client list and stack */ extern Cursor cursor[CurLast]; extern DC dc; /* global draw context */ @@ -114,7 +114,8 @@ 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 */ +void focusnext(const char *arg); /* focuses next visible client */ +void focusprev(const char *arg); /* focuses prev visible client */ 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 */