about summary refs log tree commit diff stats
path: root/draw.c
diff options
context:
space:
mode:
Diffstat (limited to 'draw.c')
-rw-r--r--draw.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/draw.c b/draw.c
index 5bb6fc2..6a7fea9 100644
--- a/draw.c
+++ b/draw.c
@@ -11,7 +11,7 @@
 #include "dwm.h"
 
 void
-draw_bar()
+drawstatus()
 {
 	int i;
 
@@ -44,11 +44,11 @@ draw_bar()
 }
 
 void
-draw_client(Client *c)
+drawtitle(Client *c)
 {
 	int i;
 	if(c == sel) {
-		draw_bar();
+		drawstatus();
 		XUnmapWindow(dpy, c->title);
 		XSetWindowBorder(dpy, c->win, dc.fg);
 		return;
@@ -145,7 +145,7 @@ drawtext(const char *text, Bool invert, Bool border)
 }
 
 unsigned long
-initcolor(const char *colstr)
+getcolor(const char *colstr)
 {
 	XColor color;
 	Colormap cmap = DefaultColormap(dpy, screen);
@@ -172,7 +172,7 @@ textw(char *text)
 }
 
 void
-initfont(const char *fontstr)
+setfont(const char *fontstr)
 {
 	char **missing, *def;
 	int i, n;
133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213