diff options
author | Christopher Drelich <cd@cdrakka.com> | 2018-03-14 13:58:06 -0400 |
---|---|---|
committer | Hiltjo Posthuma <hiltjo@codemadness.org> | 2018-03-14 21:02:06 +0100 |
commit | 76c8c16d79d4fd2a3e776800637d211e4dc8e50a (patch) | |
tree | 0290cf1322ed44fe43fa63a87869812212b9776a | |
parent | 3cb34830eb25ebda15a23d8391fd69cddb4fc024 (diff) |
All functions in alphabetical order except for this one.
-rw-r--r-- | dwm.c | 18 |
1 files changed, 9 insertions, 9 deletions
@@ -223,8 +223,8 @@ static void updateclientlist(void); static void updatenumlockmask(void); static void updatesizehints(Client *c); static void updatestatus(void); -static void updatewindowtype(Client *c); static void updatetitle(Client *c); +static void updatewindowtype(Client *c); static void updatewmhints(Client *c); static void view(const Arg *arg); static Client *wintoclient(Window w); @@ -1985,6 +1985,14 @@ updatesizehints(Client *c) } void +updatestatus(void) +{ + if (!gettextprop(root, XA_WM_NAME, stext, sizeof(stext))) + strcpy(stext, "dwm-"VERSION); + drawbar(selmon); +} + +void updatetitle(Client *c) { if (!gettextprop(c->win, netatom[NetWMName], c->name, sizeof c->name)) @@ -1994,14 +2002,6 @@ updatetitle(Client *c) } void -updatestatus(void) -{ - if (!gettextprop(root, XA_WM_NAME, stext, sizeof(stext))) - strcpy(stext, "dwm-"VERSION); - drawbar(selmon); -} - -void updatewindowtype(Client *c) { Atom state = getatomprop(c, netatom[NetWMState]); |