|
|
|
|
|
|
66
|
static const char *dmenucmd[] = { "dmenu_run", "-m", dmenumon, "-fn", dmenufont, "-nb", col_gray1, "-nf", col_gray3, "-sb", col_cyan, "-sf", col_gray4, NULL };
|
66
|
static const char *dmenucmd[] = { "dmenu_run", "-m", dmenumon, "-fn", dmenufont, "-nb", col_gray1, "-nf", col_gray3, "-sb", col_cyan, "-sf", col_gray4, NULL };
|
|
67
|
static const char *termcmd[] = { "/usr/bin/sakura", NULL };
|
67
|
static const char *termcmd[] = { "/usr/bin/sakura", NULL };
|
|
68
|
|
68
|
|
|
|
|
69
|
static const char *fullscreenbrowsercmd[] = { "toggle-fullscreen.sh", NULL };
|
|
|
|
70
|
|
|
69
|
static const char *editorcmd[] = { "emacsclient", "--alternate-editor=", "--create-frame", NULL };
|
71
|
static const char *editorcmd[] = { "emacsclient", "--alternate-editor=", "--create-frame", NULL };
|
|
70
|
static const char *writecmd[] = { "emacsclient", "--alternate-editor=", "--create-frame", "--eval", "(find-recent-notes)", NULL };
|
72
|
static const char *writecmd[] = { "emacsclient", "--alternate-editor=", "--create-frame", "--eval", "(find-recent-notes)", NULL };
|
|
71
|
|
73
|
|
|
|
|
|
|
|
113
|
TAGKEYS( XK_9, 8)
|
115
|
TAGKEYS( XK_9, 8)
|
|
114
|
{ MODKEY|ShiftMask, XK_q, quit, {0} },
|
116
|
{ MODKEY|ShiftMask, XK_q, quit, {0} },
|
|
115
|
|
117
|
|
|
|
|
118
|
{ MODKEY|ShiftMask, XK_b, togglebar, {0} },
|
|
|
|
119
|
{ MODKEY|ShiftMask, XK_b, spawn, { .v = fullscreenbrowsercmd } },
|
|
|
|
120
|
|
|
116
|
{ MODKEY, XK_e, spawn, { .v = editorcmd } },
|
121
|
{ MODKEY, XK_e, spawn, { .v = editorcmd } },
|
|
117
|
{ MODKEY, XK_w, spawn, { .v = writecmd } },
|
122
|
{ MODKEY, XK_w, spawn, { .v = writecmd } },
|
|
118
|
|
123
|
|