dwm update in progress

This commit is contained in:
2023-05-09 20:21:49 +02:00
parent 61775f18e4
commit e65b5d797a
330 changed files with 26354 additions and 16 deletions

View File

@@ -0,0 +1,22 @@
#define COMMANDMODE 1
#define INSERTMODE 2
typedef struct {
unsigned int mod[4];
KeySym keysym[4];
void (*func)(const Arg *);
const Arg arg;
} Command;
static void clearcmd(const Arg *arg);
static void grabkeys(void);
static int isprotodel(Client *c);
static void keypress(XEvent *e);
static void onlyclient(const Arg *arg);
static void setkeymode(const Arg *arg);
/* variables */
static unsigned int cmdmod[4];
static unsigned int keymode = INSERTMODE;
static KeySym cmdkeysym[4];