diff options
author | bd <bdunahu@operationnull.com> | 2024-09-20 20:40:58 -0400 |
---|---|---|
committer | bd <bdunahu@operationnull.com> | 2024-09-20 20:40:58 -0400 |
commit | 51182f303f44c507762caa230fe426fdd9357ed5 (patch) | |
tree | f76a7056d3d8a204fb7186bc66f2c0eea7533d28 /.config/guix/modules/dwm/config.def.h | |
parent | f77452602b3cafeeabbf1cdc6039b04565d2f0e6 (diff) |
Fix librewolf settings in dwm
Diffstat (limited to '.config/guix/modules/dwm/config.def.h')
-rw-r--r-- | .config/guix/modules/dwm/config.def.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.config/guix/modules/dwm/config.def.h b/.config/guix/modules/dwm/config.def.h index 9069f9f..f1f8b46 100644 --- a/.config/guix/modules/dwm/config.def.h +++ b/.config/guix/modules/dwm/config.def.h @@ -36,7 +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 }, + { "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 }, @@ -88,7 +88,7 @@ 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 }; +static const char *termcmd[] = { "emacsclient", "-nc", NULL }; static const Key keys[] = { |