summaryrefslogtreecommitdiff
path: root/home/xyz/.local/bin/sbar
diff options
context:
space:
mode:
authorXiao Pan <xyz@flylightning.xyz>2026-05-06 22:19:10 +0800
committerXiao Pan <xyz@flylightning.xyz>2026-05-06 22:19:10 +0800
commitbea544c0d27a2b2bc832e8da9aa9f13ac63a771c (patch)
tree17b3cb2eb9ef4f5f09749960739ee1f9a6c11024 /home/xyz/.local/bin/sbar
parent16f4ca8b353ea05624373bf2164c78317214e987 (diff)
wikinews closed
Diffstat (limited to 'home/xyz/.local/bin/sbar')
0 files changed, 0 insertions, 0 deletions
extern unsigned int textw(const char *text); /* return the width of text in px*/ /* event.c */ extern void grabkeys(void); /* grab all keys defined in config.h */ /* layout.c */ extern void focusclient(const char *arg); /* focuses next(1)/previous(-1) visible client */ extern void incmasterw(const char *arg); /* increments the master width with arg's index value */ extern void incnmaster(const char *arg); /* increments nmaster with arg's index value */ extern void initlayouts(void); /* initialize layout array */ extern Client *nexttiled(Client *c); /* returns tiled successor of c */ extern void restack(void); /* restores z layers of all clients */ extern void setlayout(const char *arg); /* sets layout, -1 toggles */ extern void togglemax(const char *arg); /* toggles maximization of untiled client */ extern void untile(void); /* arranges all windows untiled */ extern void zoom(const char *arg); /* zooms the focused client to master area, arg is ignored */ /* main.c */ extern void quit(const char *arg); /* quit dwm nicely */ extern void sendevent(Window w, Atom a, long value); /* send synthetic event to w */ extern int xerror(Display *dsply, XErrorEvent *ee); /* dwm's X error handler */ /* tag.c */ extern void compileregs(void); /* initialize regexps of rules defined in config.h */ extern Bool isvisible(Client *c); /* returns True if client is visible */ extern void settags(Client *c, Client *trans); /* sets tags of c */ extern void tag(const char *arg); /* tags c with arg's index */ extern void toggletag(const char *arg); /* toggles c tags with arg's index */