2006-07-11 21:24:10 +02:00
|
|
|
/*
|
|
|
|
* (C)opyright MMVI Anselm R. Garbe <garbeam at gmail dot com>
|
|
|
|
* See LICENSE file for license details.
|
|
|
|
*/
|
|
|
|
|
2006-07-14 22:33:38 +02:00
|
|
|
#include <fcntl.h>
|
|
|
|
#include <stdio.h>
|
2006-07-11 21:24:10 +02:00
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <unistd.h>
|
2006-07-13 10:34:55 +02:00
|
|
|
#include <X11/keysym.h>
|
2006-07-14 22:33:38 +02:00
|
|
|
#include <X11/Xatom.h>
|
|
|
|
|
|
|
|
#include "dwm.h"
|
|
|
|
|
|
|
|
static void ckill(Arg *arg);
|
|
|
|
static void nextc(Arg *arg);
|
|
|
|
static void prevc(Arg *arg);
|
|
|
|
static void max(Arg *arg);
|
|
|
|
static void ttrunc(Arg *arg);
|
|
|
|
static void tappend(Arg *arg);
|
|
|
|
static void zoom(Arg *arg);
|
2006-07-11 21:24:10 +02:00
|
|
|
|
2006-07-13 10:34:55 +02:00
|
|
|
/********** CUSTOMIZE **********/
|
|
|
|
|
|
|
|
const char *term[] = {
|
2006-07-13 11:49:31 +02:00
|
|
|
"urxvtc", "-tr", "+sb", "-bg", "black", "-fg", "white", "-fn",
|
2006-07-13 10:34:55 +02:00
|
|
|
"-*-terminus-medium-*-*-*-13-*-*-*-*-*-iso10646-*",NULL
|
|
|
|
};
|
|
|
|
const char *browse[] = { "firefox", NULL };
|
2006-07-13 12:19:10 +02:00
|
|
|
const char *xlock[] = { "xlock", NULL };
|
2006-07-13 10:34:55 +02:00
|
|
|
|
2006-07-14 22:33:38 +02:00
|
|
|
Key key[] = {
|
2006-07-13 21:42:17 +02:00
|
|
|
/* modifier key function arguments */
|
|
|
|
{ Mod1Mask, XK_Return, zoom, { 0 } },
|
|
|
|
{ Mod1Mask, XK_k, prevc, { 0 } },
|
|
|
|
{ Mod1Mask, XK_j, nextc, { 0 } },
|
|
|
|
{ Mod1Mask, XK_m, max, { 0 } },
|
|
|
|
{ Mod1Mask, XK_0, view, { .i = Tscratch } },
|
|
|
|
{ Mod1Mask, XK_1, view, { .i = Tdev } },
|
2006-07-14 11:57:33 +02:00
|
|
|
{ Mod1Mask, XK_2, view, { .i = Twww } },
|
|
|
|
{ Mod1Mask, XK_3, view, { .i = Twork } },
|
2006-07-13 21:42:17 +02:00
|
|
|
{ Mod1Mask, XK_space, tiling, { 0 } },
|
|
|
|
{ Mod1Mask|ShiftMask, XK_space, floating, { 0 } },
|
|
|
|
{ Mod1Mask|ShiftMask, XK_0, ttrunc, { .i = Tscratch } },
|
|
|
|
{ Mod1Mask|ShiftMask, XK_1, ttrunc, { .i = Tdev } },
|
2006-07-14 11:57:33 +02:00
|
|
|
{ Mod1Mask|ShiftMask, XK_2, ttrunc, { .i = Twww } },
|
|
|
|
{ Mod1Mask|ShiftMask, XK_3, ttrunc, { .i = Twork } },
|
2006-07-13 21:42:17 +02:00
|
|
|
{ Mod1Mask|ShiftMask, XK_c, ckill, { 0 } },
|
|
|
|
{ Mod1Mask|ShiftMask, XK_q, quit, { 0 } },
|
|
|
|
{ Mod1Mask|ShiftMask, XK_Return, spawn, { .argv = term } },
|
|
|
|
{ Mod1Mask|ShiftMask, XK_w, spawn, { .argv = browse } },
|
|
|
|
{ Mod1Mask|ShiftMask, XK_l, spawn, { .argv = xlock } },
|
|
|
|
{ ControlMask, XK_0, tappend, { .i = Tscratch } },
|
|
|
|
{ ControlMask, XK_1, tappend, { .i = Tdev } },
|
2006-07-14 11:57:33 +02:00
|
|
|
{ ControlMask, XK_2, tappend, { .i = Twww } },
|
|
|
|
{ ControlMask, XK_3, tappend, { .i = Twork } },
|
2006-07-13 10:34:55 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
/********** CUSTOMIZE **********/
|
|
|
|
|
|
|
|
void
|
2006-07-14 22:33:38 +02:00
|
|
|
grabkeys()
|
2006-07-13 10:34:55 +02:00
|
|
|
{
|
2006-07-13 19:55:07 +02:00
|
|
|
static unsigned int len = key ? sizeof(key) / sizeof(key[0]) : 0;
|
|
|
|
unsigned int i;
|
2006-07-13 10:34:55 +02:00
|
|
|
KeyCode code;
|
|
|
|
|
|
|
|
for(i = 0; i < len; i++) {
|
|
|
|
code = XKeysymToKeycode(dpy, key[i].keysym);
|
|
|
|
XUngrabKey(dpy, code, key[i].mod, root);
|
2006-07-14 22:33:38 +02:00
|
|
|
XGrabKey(dpy, code, key[i].mod, root, True,
|
|
|
|
GrabModeAsync, GrabModeAsync);
|
2006-07-13 10:34:55 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
keypress(XEvent *e)
|
|
|
|
{
|
|
|
|
XKeyEvent *ev = &e->xkey;
|
2006-07-13 19:55:07 +02:00
|
|
|
static unsigned int len = key ? sizeof(key) / sizeof(key[0]) : 0;
|
|
|
|
unsigned int i;
|
2006-07-13 10:34:55 +02:00
|
|
|
KeySym keysym;
|
|
|
|
|
|
|
|
keysym = XKeycodeToKeysym(dpy, (KeyCode)ev->keycode, 0);
|
|
|
|
for(i = 0; i < len; i++)
|
|
|
|
if((keysym == key[i].keysym) && (key[i].mod == ev->state)) {
|
|
|
|
if(key[i].func)
|
2006-07-13 17:09:35 +02:00
|
|
|
key[i].func(&key[i].arg);
|
2006-07-13 10:34:55 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
2006-07-11 21:24:10 +02:00
|
|
|
|
2006-07-14 22:33:38 +02:00
|
|
|
static void
|
|
|
|
zoom(Arg *arg)
|
|
|
|
{
|
|
|
|
Client **l, *c;
|
2006-07-11 21:24:10 +02:00
|
|
|
|
2006-07-14 22:33:38 +02:00
|
|
|
if(!sel)
|
|
|
|
return;
|
|
|
|
|
2006-07-14 22:54:09 +02:00
|
|
|
if(sel == getnext(clients) && sel->next) {
|
|
|
|
if((c = getnext(sel->next)))
|
2006-07-14 22:33:38 +02:00
|
|
|
sel = c;
|
|
|
|
}
|
|
|
|
|
|
|
|
for(l = &clients; *l && *l != sel; l = &(*l)->next);
|
|
|
|
*l = sel->next;
|
|
|
|
|
|
|
|
sel->next = clients; /* pop */
|
|
|
|
clients = sel;
|
|
|
|
arrange(NULL);
|
|
|
|
focus(sel);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
max(Arg *arg)
|
2006-07-11 21:24:10 +02:00
|
|
|
{
|
2006-07-14 22:33:38 +02:00
|
|
|
if(!sel)
|
|
|
|
return;
|
|
|
|
sel->x = sx;
|
|
|
|
sel->y = sy + bh;
|
|
|
|
sel->w = sw - 2 * sel->border;
|
|
|
|
sel->h = sh - 2 * sel->border - bh;
|
2006-07-14 22:54:09 +02:00
|
|
|
higher(sel);
|
2006-07-14 22:33:38 +02:00
|
|
|
resize(sel, False);
|
|
|
|
}
|
2006-07-11 21:24:10 +02:00
|
|
|
|
2006-07-14 22:33:38 +02:00
|
|
|
static void
|
|
|
|
tappend(Arg *arg)
|
|
|
|
{
|
|
|
|
if(!sel)
|
2006-07-11 21:24:10 +02:00
|
|
|
return;
|
2006-07-14 22:33:38 +02:00
|
|
|
|
|
|
|
sel->tags[arg->i] = tags[arg->i];
|
|
|
|
arrange(NULL);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
ttrunc(Arg *arg)
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
if(!sel)
|
|
|
|
return;
|
|
|
|
|
|
|
|
for(i = 0; i < TLast; i++)
|
|
|
|
sel->tags[i] = NULL;
|
|
|
|
tappend(arg);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
prevc(Arg *arg)
|
|
|
|
{
|
|
|
|
Client *c;
|
|
|
|
|
|
|
|
if(!sel)
|
|
|
|
return;
|
|
|
|
|
|
|
|
if((c = sel->revert && sel->revert->tags[tsel] ? sel->revert : NULL)) {
|
2006-07-14 22:54:09 +02:00
|
|
|
higher(c);
|
2006-07-14 22:33:38 +02:00
|
|
|
focus(c);
|
2006-07-11 21:24:10 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2006-07-14 22:33:38 +02:00
|
|
|
static void
|
|
|
|
nextc(Arg *arg)
|
2006-07-11 21:24:10 +02:00
|
|
|
{
|
2006-07-14 22:33:38 +02:00
|
|
|
Client *c;
|
|
|
|
|
|
|
|
if(!sel)
|
2006-07-11 21:24:10 +02:00
|
|
|
return;
|
2006-07-14 22:33:38 +02:00
|
|
|
|
2006-07-14 22:54:09 +02:00
|
|
|
if(!(c = getnext(sel->next)))
|
|
|
|
c = getnext(clients);
|
2006-07-14 22:33:38 +02:00
|
|
|
if(c) {
|
2006-07-14 22:54:09 +02:00
|
|
|
higher(c);
|
2006-07-14 22:33:38 +02:00
|
|
|
c->revert = sel;
|
|
|
|
focus(c);
|
2006-07-11 21:24:10 +02:00
|
|
|
}
|
|
|
|
}
|
2006-07-14 22:33:38 +02:00
|
|
|
|
|
|
|
static void
|
|
|
|
ckill(Arg *arg)
|
|
|
|
{
|
|
|
|
if(!sel)
|
|
|
|
return;
|
|
|
|
if(sel->proto & WM_PROTOCOL_DELWIN)
|
2006-07-14 22:54:09 +02:00
|
|
|
sendevent(sel->win, wm_atom[WMProtocols], wm_atom[WMDelete]);
|
2006-07-14 22:33:38 +02:00
|
|
|
else
|
|
|
|
XKillClient(dpy, sel->win);
|
|
|
|
}
|
|
|
|
|