aboutsummaryrefslogtreecommitdiffstats
path: root/screen.c
diff options
context:
space:
mode:
authorAnselm R. Garbe <garbeam@wmii.de>2006-07-14 22:54:09 +0200
committerAnselm R. Garbe <garbeam@wmii.de>2006-07-14 22:54:09 +0200
commitc0705eeb65733e8c5091e47d5bdc701a0779a949 (patch)
tree0a33e58c24419ff6e12f5401e3bfd65c1e90dfa3 /screen.c
parent29355bd38284ed9aec8d3ffabde61db73947c9f9 (diff)
downloaddwm-c0705eeb65733e8c5091e47d5bdc701a0779a949.tar.zst
sanitized names
Diffstat (limited to 'screen.c')
-rw-r--r--screen.c24
1 files changed, 12 insertions, 12 deletions
diff --git a/screen.c b/screen.c
index f2891cf..d313955 100644
--- a/screen.c
+++ b/screen.c
@@ -15,9 +15,9 @@ view(Arg *arg)
tsel = arg->i;
arrange(NULL);
- for(c = clients; c; c = next(c->next))
- draw_client(c);
- draw_bar();
+ for(c = clients; c; c = getnext(c->next))
+ drawtitle(c);
+ drawstatus();
}
void
@@ -30,15 +30,15 @@ floating(Arg *arg)
if(c->tags[tsel])
resize(c, True);
else
- ban_client(c);
+ ban(c);
}
if(sel && !sel->tags[tsel]) {
- if((sel = next(clients))) {
- craise(sel);
+ if((sel = getnext(clients))) {
+ higher(sel);
focus(sel);
}
}
- draw_bar();
+ drawstatus();
}
void
@@ -61,7 +61,7 @@ tiling(Arg *arg)
for(i = 0, c = clients; c; c = c->next) {
if(c->tags[tsel]) {
if(c->floating) {
- craise(c);
+ higher(c);
resize(c, True);
continue;
}
@@ -87,14 +87,14 @@ tiling(Arg *arg)
i++;
}
else
- ban_client(c);
+ ban(c);
}
if(!sel || (sel && !sel->tags[tsel])) {
- if((sel = next(clients))) {
- craise(sel);
+ if((sel = getnext(clients))) {
+ higher(sel);
focus(sel);
}
}
- draw_bar();
+ drawstatus();
}