qutebrowser is back.

This commit is contained in:
Bartek Stalewski 2022-05-08 19:12:35 +02:00
parent 6e658074a1
commit 3b55d55cdf
7 changed files with 4929 additions and 15 deletions

View file

@ -48,17 +48,18 @@ static const Rule rules[] = {
* WM_CLASS(STRING) = instance, class
* WM_NAME(STRING) = title
*/
/* class instance title tags mask isfloating isterminal noswallow monitor */
{ NULL, NULL, "st", 0, 0, 1, 0, -1 },
{ "firefox", NULL, NULL, 2, 0, 0, 1, -1 },
{ "Ferdi", NULL, NULL, 1 << 2, 0, 0, 0, -1 },
{ "Slack", NULL, NULL, 1 << 7, 0, 0, 0, -1 },
{ "workfx", NULL, NULL, 1 << 9, 0, 0, 1, -1 },
{ "sonos-controller-unofficial", NULL, NULL, 1 << 6, 0, 0, 0, -1 },
{ NULL, NULL, "Event Tester", 0, 0, 0, 1, -1 }, /* xev */
{ NULL, "mutt", NULL, 1 << 3, 0, 1, 1, -1 },
{ NULL, "spterm", NULL, SPTAG(0), 1, 1, 0, -1 },
{ NULL, "spwork", NULL, SPTAG(1), 1, 1, 0, -1 },
/* class instance title tags mask isfloating isterminal noswallow monitor */
{ NULL, NULL, "st", 0, 0, 1, 0, -1 },
{ "firefox", NULL, NULL, 2, 0, 0, 1, -1 },
{ NULL, "qutebrowser", NULL, 2, 0, 0, 1, -1 },
{ "Ferdi", NULL, NULL, 1 << 2, 0, 0, 0, -1 },
{ "Slack", NULL, NULL, 1 << 7, 0, 0, 0, -1 },
{ "workfx", NULL, NULL, 1 << 9, 0, 0, 1, -1 },
{ NULL, "workqt", NULL, 1 << 9, 0, 0, 1, -1 },
{ NULL, NULL, "Event Tester", 0, 0, 0, 1, -1 }, /* xev */
{ NULL, "mutt", NULL, 1 << 3, 0, 1, 1, -1 },
{ NULL, "spterm", NULL, SPTAG(0), 1, 1, 0, -1 },
{ NULL, "spwork", NULL, SPTAG(1), 1, 1, 0, -1 },
};
/* layout(s) */
@ -103,8 +104,8 @@ static Key keys[] = {
TAGKEYS( XK_0, 9)
/* apps n'shit */
//{ MODKEY, XK_Return, spawn, {.v = termcmd } },
{ MODKEY, XK_Return, spawn, SHCMD("BROWSER=firefox st") },
{ SHTKEY, XK_Return, spawn, SHCMD("BROWSER=workfx st -n work") },
{ MODKEY, XK_Return, spawn, SHCMD("BROWSER=qutebrowser st") },
{ SHTKEY, XK_Return, spawn, SHCMD("BROWSER=workqt st -n work") },
{ MODKEY, XK_space, spawn, SHCMD("dmenu_run -c -i -l 20") },
{ MODKEY, XK_i, spawn, SHCMD("scrot -f -s 'scrot_%Y-%m-%d_%H-%M-%S_%s.png'") },
{ SHTKEY, XK_i, spawn, SHCMD("scrot 'scrot_%Y-%m-%d_%H-%M-%S_%s.png'") },