Add keepassxc scratchpad
This commit is contained in:
parent
188593cf0b
commit
75889d83f7
10
config.def.h
10
config.def.h
|
@ -70,12 +70,14 @@ const char *spcmd3[] = {"bitwarden", NULL };
|
||||||
#else
|
#else
|
||||||
const char *spcmd3[] = {"bitwarden-desktop", NULL };
|
const char *spcmd3[] = {"bitwarden-desktop", NULL };
|
||||||
#endif
|
#endif
|
||||||
|
const char *spcmd4[] = {"/home/slococo/.local/bin/keepass", NULL };
|
||||||
static Sp scratchpads[] = {
|
static Sp scratchpads[] = {
|
||||||
/* name cmd */
|
/* name cmd */
|
||||||
{"spterm", spcmd1},
|
{"spterm", spcmd1},
|
||||||
{"spranger", spcmd2},
|
{"spranger", spcmd2},
|
||||||
//{"sppcmanfm", spcmd2},
|
//{"sppcmanfm", spcmd2},
|
||||||
{"bitwarden", spcmd3},
|
{"bitwarden", spcmd3},
|
||||||
|
{"keepassxc", spcmd4},
|
||||||
};
|
};
|
||||||
|
|
||||||
/* tagging */
|
/* tagging */
|
||||||
|
@ -89,9 +91,10 @@ static const Rule rules[] = {
|
||||||
/* class instance title tags mask isfloating monitor */
|
/* class instance title tags mask isfloating monitor */
|
||||||
{ "Gimp", NULL, NULL, 0, 1, -1 },
|
{ "Gimp", NULL, NULL, 0, 1, -1 },
|
||||||
{ "Firefox", NULL, NULL, 1 << 8, 0, -1 },
|
{ "Firefox", NULL, NULL, 1 << 8, 0, -1 },
|
||||||
{ NULL, "spterm", NULL, SPTAG(0), 1, -1 },
|
{ NULL, "spterm", NULL, SPTAG(0), 1, -1 },
|
||||||
{ NULL, "spranger", NULL, SPTAG(1), 1, -1 },
|
{ NULL, "spranger", NULL, SPTAG(1), 1, -1 },
|
||||||
{ NULL, "bitwarden", NULL, SPTAG(2), 1, -1 },
|
{ NULL, "bitwarden", NULL, SPTAG(2), 1, -1 },
|
||||||
|
{ NULL, "keepassxc", NULL, SPTAG(3), 1, -1 },
|
||||||
};
|
};
|
||||||
|
|
||||||
/* layout(s) */
|
/* layout(s) */
|
||||||
|
@ -226,6 +229,7 @@ static Key keys[] = {
|
||||||
{ MODKEY, XK_x, togglescratch, {.ui = 0 } },
|
{ MODKEY, XK_x, togglescratch, {.ui = 0 } },
|
||||||
{ MODKEY, XK_y, togglescratch, {.ui = 1 } },
|
{ MODKEY, XK_y, togglescratch, {.ui = 1 } },
|
||||||
{ MODKEY, XK_u, togglescratch, {.ui = 2 } },
|
{ MODKEY, XK_u, togglescratch, {.ui = 2 } },
|
||||||
|
{ MODKEY, XK_i, togglescratch, {.ui = 3 } },
|
||||||
TAGKEYS( XK_1, 0)
|
TAGKEYS( XK_1, 0)
|
||||||
TAGKEYS( XK_2, 1)
|
TAGKEYS( XK_2, 1)
|
||||||
TAGKEYS( XK_3, 2)
|
TAGKEYS( XK_3, 2)
|
||||||
|
|
Loading…
Reference in New Issue