about summary refs log tree commit diff
diff options
context:
space:
mode:
authorChristopher Drelich <[email protected]>2018-03-14 13:58:06 -0400
committerHiltjo Posthuma <[email protected]>2018-03-14 21:02:06 +0100
commit76c8c16d79d4fd2a3e776800637d211e4dc8e50a (patch)
tree0290cf1322ed44fe43fa63a87869812212b9776a
parentColBorder has been moved to the enum with ColFg and ColBg. (diff)
downloaddwm-76c8c16d79d4fd2a3e776800637d211e4dc8e50a.tar.gz
dwm-76c8c16d79d4fd2a3e776800637d211e4dc8e50a.tar.bz2
dwm-76c8c16d79d4fd2a3e776800637d211e4dc8e50a.zip
All functions in alphabetical order except for this one.
-rw-r--r--dwm.c18
1 files changed, 9 insertions, 9 deletions
diff --git a/dwm.c b/dwm.c
index ab16c75..c98678d 100644
--- a/dwm.c
+++ b/dwm.c
@@ -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]);