2006-07-15 16:30:50 +02:00
|
|
|
/*
|
|
|
|
* (C)opyright MMVI Anselm R. Garbe <garbeam at gmail dot com>
|
|
|
|
* See LICENSE file for license details.
|
|
|
|
*/
|
2006-07-15 17:00:56 +02:00
|
|
|
#include "dwm.h"
|
2006-07-15 16:30:50 +02:00
|
|
|
|
|
|
|
#include <string.h>
|
|
|
|
#include <X11/Xutil.h>
|
|
|
|
|
2006-07-17 09:12:29 +02:00
|
|
|
/* static */
|
2006-07-15 16:30:50 +02:00
|
|
|
|
2006-07-17 09:12:29 +02:00
|
|
|
/* CUSTOMIZE */
|
2006-07-15 16:30:50 +02:00
|
|
|
static Rule rule[] = {
|
2006-07-16 00:47:40 +02:00
|
|
|
/* class instance tags isfloat */
|
2006-07-18 15:10:57 +02:00
|
|
|
{ "Firefox-bin", "firefox-bin", { [Twww] = "www" }, False },
|
2006-07-15 16:30:50 +02:00
|
|
|
};
|
|
|
|
|
2006-07-17 09:12:29 +02:00
|
|
|
/* extern */
|
2006-07-15 17:00:56 +02:00
|
|
|
|
2006-07-17 09:12:29 +02:00
|
|
|
/* CUSTOMIZE */
|
|
|
|
char *tags[TLast] = {
|
|
|
|
[Tscratch] = "scratch",
|
|
|
|
[Tdev] = "dev",
|
|
|
|
[Twww] = "www",
|
|
|
|
[Twork] = "work",
|
|
|
|
};
|
2006-07-15 17:00:56 +02:00
|
|
|
void (*arrange)(Arg *) = dotile;
|
2006-07-15 16:30:50 +02:00
|
|
|
|
|
|
|
void
|
2006-07-15 17:00:56 +02:00
|
|
|
appendtag(Arg *arg)
|
2006-07-15 16:30:50 +02:00
|
|
|
{
|
2006-07-15 17:00:56 +02:00
|
|
|
if(!sel)
|
2006-07-15 16:30:50 +02:00
|
|
|
return;
|
|
|
|
|
2006-07-15 17:00:56 +02:00
|
|
|
sel->tags[arg->i] = tags[arg->i];
|
2006-07-15 16:30:50 +02:00
|
|
|
arrange(NULL);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
dofloat(Arg *arg)
|
|
|
|
{
|
|
|
|
Client *c;
|
|
|
|
|
|
|
|
arrange = dofloat;
|
|
|
|
for(c = clients; c; c = c->next) {
|
2006-07-18 12:36:57 +02:00
|
|
|
setgeom(c);
|
|
|
|
if(c->tags[tsel]) {
|
2006-07-19 11:31:04 +02:00
|
|
|
resize(c, True, TopLeft);
|
2006-07-18 12:36:57 +02:00
|
|
|
}
|
2006-07-15 16:30:50 +02:00
|
|
|
else
|
|
|
|
ban(c);
|
|
|
|
}
|
|
|
|
if(sel && !sel->tags[tsel]) {
|
2006-07-18 11:38:31 +02:00
|
|
|
if((sel = getnext(clients, tsel))) {
|
2006-07-15 16:30:50 +02:00
|
|
|
higher(sel);
|
|
|
|
focus(sel);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
drawall();
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
dotile(Arg *arg)
|
|
|
|
{
|
|
|
|
Client *c;
|
|
|
|
int n, i, w, h;
|
|
|
|
|
|
|
|
w = sw - mw;
|
|
|
|
arrange = dotile;
|
|
|
|
for(n = 0, c = clients; c; c = c->next)
|
2006-07-16 00:47:40 +02:00
|
|
|
if(c->tags[tsel] && !c->isfloat)
|
2006-07-15 16:30:50 +02:00
|
|
|
n++;
|
|
|
|
|
|
|
|
if(n > 1)
|
|
|
|
h = (sh - bh) / (n - 1);
|
|
|
|
else
|
|
|
|
h = sh - bh;
|
|
|
|
|
|
|
|
for(i = 0, c = clients; c; c = c->next) {
|
2006-07-18 12:36:57 +02:00
|
|
|
setgeom(c);
|
2006-07-15 16:30:50 +02:00
|
|
|
if(c->tags[tsel]) {
|
2006-07-16 00:47:40 +02:00
|
|
|
if(c->isfloat) {
|
2006-07-15 16:30:50 +02:00
|
|
|
higher(c);
|
2006-07-19 11:31:04 +02:00
|
|
|
resize(c, True, TopLeft);
|
2006-07-15 16:30:50 +02:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
if(n == 1) {
|
2006-07-18 12:36:57 +02:00
|
|
|
*c->x = sx;
|
|
|
|
*c->y = sy + bh;
|
|
|
|
*c->w = sw - 2 * c->border;
|
|
|
|
*c->h = sh - 2 * c->border - bh;
|
2006-07-15 16:30:50 +02:00
|
|
|
}
|
|
|
|
else if(i == 0) {
|
2006-07-18 12:36:57 +02:00
|
|
|
*c->x = sx;
|
|
|
|
*c->y = sy + bh;
|
|
|
|
*c->w = mw - 2 * c->border;
|
|
|
|
*c->h = sh - 2 * c->border - bh;
|
2006-07-15 16:30:50 +02:00
|
|
|
}
|
|
|
|
else {
|
2006-07-18 12:36:57 +02:00
|
|
|
*c->x = sx + mw;
|
|
|
|
*c->y = sy + (i - 1) * h + bh;
|
|
|
|
*c->w = w - 2 * c->border;
|
|
|
|
*c->h = h - 2 * c->border;
|
2006-07-15 16:30:50 +02:00
|
|
|
}
|
2006-07-19 11:31:04 +02:00
|
|
|
resize(c, False, TopLeft);
|
2006-07-15 16:30:50 +02:00
|
|
|
i++;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
ban(c);
|
|
|
|
}
|
|
|
|
if(!sel || (sel && !sel->tags[tsel])) {
|
2006-07-18 11:38:31 +02:00
|
|
|
if((sel = getnext(clients, tsel))) {
|
2006-07-15 16:30:50 +02:00
|
|
|
higher(sel);
|
|
|
|
focus(sel);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
drawall();
|
|
|
|
}
|
|
|
|
|
2006-07-15 17:00:56 +02:00
|
|
|
Client *
|
2006-07-18 11:38:31 +02:00
|
|
|
getnext(Client *c, unsigned int t)
|
2006-07-15 16:30:50 +02:00
|
|
|
{
|
2006-07-18 11:38:31 +02:00
|
|
|
for(; c && !c->tags[t]; c = c->next);
|
2006-07-15 17:00:56 +02:00
|
|
|
return c;
|
2006-07-15 16:30:50 +02:00
|
|
|
}
|
|
|
|
|
2006-07-18 11:38:31 +02:00
|
|
|
void
|
|
|
|
heretag(Arg *arg)
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
Client *c;
|
|
|
|
|
|
|
|
if(arg->i == tsel)
|
|
|
|
return;
|
|
|
|
|
|
|
|
if(!(c = getnext(clients, arg->i)))
|
|
|
|
return;
|
|
|
|
|
|
|
|
for(i = 0; i < TLast; i++)
|
|
|
|
c->tags[i] = NULL;
|
|
|
|
c->tags[tsel] = tags[tsel];
|
2006-07-18 11:45:32 +02:00
|
|
|
pop(c);
|
2006-07-18 11:38:31 +02:00
|
|
|
focus(c);
|
|
|
|
}
|
|
|
|
|
2006-07-15 16:30:50 +02:00
|
|
|
void
|
|
|
|
replacetag(Arg *arg)
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
if(!sel)
|
|
|
|
return;
|
|
|
|
|
|
|
|
for(i = 0; i < TLast; i++)
|
|
|
|
sel->tags[i] = NULL;
|
|
|
|
appendtag(arg);
|
|
|
|
}
|
|
|
|
|
2006-07-15 17:00:56 +02:00
|
|
|
void
|
|
|
|
settags(Client *c)
|
|
|
|
{
|
|
|
|
XClassHint ch;
|
|
|
|
static unsigned int len = rule ? sizeof(rule) / sizeof(rule[0]) : 0;
|
|
|
|
unsigned int i, j;
|
|
|
|
Bool matched = False;
|
|
|
|
|
|
|
|
if(!len) {
|
|
|
|
c->tags[tsel] = tags[tsel];
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if(XGetClassHint(dpy, c->win, &ch)) {
|
|
|
|
if(ch.res_class && ch.res_name) {
|
|
|
|
for(i = 0; i < len; i++)
|
|
|
|
if(!strncmp(rule[i].class, ch.res_class, sizeof(rule[i].class))
|
|
|
|
&& !strncmp(rule[i].instance, ch.res_name, sizeof(rule[i].instance)))
|
|
|
|
{
|
|
|
|
for(j = 0; j < TLast; j++)
|
|
|
|
c->tags[j] = rule[i].tags[j];
|
2006-07-16 00:47:40 +02:00
|
|
|
c->isfloat = rule[i].isfloat;
|
2006-07-15 17:00:56 +02:00
|
|
|
matched = True;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if(ch.res_class)
|
|
|
|
XFree(ch.res_class);
|
|
|
|
if(ch.res_name)
|
|
|
|
XFree(ch.res_name);
|
|
|
|
}
|
|
|
|
|
|
|
|
if(!matched)
|
|
|
|
c->tags[tsel] = tags[tsel];
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
view(Arg *arg)
|
|
|
|
{
|
|
|
|
tsel = arg->i;
|
|
|
|
arrange(NULL);
|
|
|
|
drawall();
|
|
|
|
}
|