diff options
Diffstat (limited to '.config/guix/modules/dwm/config.def.h')
-rw-r--r-- | .config/guix/modules/dwm/config.def.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/.config/guix/modules/dwm/config.def.h b/.config/guix/modules/dwm/config.def.h index 2946cf5..9069f9f 100644 --- a/.config/guix/modules/dwm/config.def.h +++ b/.config/guix/modules/dwm/config.def.h @@ -36,6 +36,7 @@ static const Rule rules[] = { /* class instance title tags mask isfloating monitor */ { "Emacs", NULL, NULL, 1 << 0, 0, -1 }, { "Icecat", NULL, NULL, 1 << 1, 0, -1 }, + { "librewolf",NULL, NULL, 1 << 1, 0, -1 }, { "Zathura", NULL, NULL, 1 << 2, 0, -1 }, { "libreoffice",NULL, NULL, 1 << 3, 0, -1 }, { "Gimp", NULL, NULL, 1 << 4, 1, -1 }, @@ -86,6 +87,7 @@ static const char *flameselect[] = { "flameshot", "launcher", NULL }; static const char *flameall[] = { "flameshot", "full", NULL }; /* other applications */ static const char *icecmd[] = { "icecat", NULL }; +static const char *wolfcmd[] = { "librewolf", NULL }; static const char *termcmd[] = { "emacsclient", "-nc", NULL }; @@ -95,6 +97,7 @@ static const Key keys[] = { { MODKEY|ShiftMask, XK_l, spawn, SHCMD("xset s activate; slock") }, { MODKEY|ShiftMask, XK_Return, spawn, {.v = termcmd } }, { MODKEY|ShiftMask, XK_b, spawn, {.v = icecmd } }, + { MODKEY|ShiftMask, XK_c, spawn, {.v = wolfcmd } }, { MODKEY|ShiftMask, XK_o, spawn, SHCMD("xdotool type $(grep -v '^#' /home/bdunahu/.local/bin/bookmarks.txt | dmenu -i -l 4 | awk '{print $NF}')") }, { MODKEY|ShiftMask, XK_p, spawn, SHCMD("passmenu --type") }, { 0, XK_F2, spawn, {.v = lowerbgt } }, |