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 | |
parent | f77452602b3cafeeabbf1cdc6039b04565d2f0e6 (diff) |
Fix librewolf settings in dwm
Diffstat (limited to '.config')
-rw-r--r-- | .config/emacs/modules/bd--notes.el | 1 | ||||
-rw-r--r-- | .config/guix/modules/dwm/config.def.h | 4 |
2 files changed, 3 insertions, 2 deletions
diff --git a/.config/emacs/modules/bd--notes.el b/.config/emacs/modules/bd--notes.el index 15b5f2c..a9f58b5 100644 --- a/.config/emacs/modules/bd--notes.el +++ b/.config/emacs/modules/bd--notes.el @@ -13,6 +13,7 @@ :config (require 'denote-journal-extras) :custom + (denote-file-type 'org) (denote-known-keywords '("ss" "writing" "reading" "art" "csu" "umass" "cs" "guix" "emacs" "programs" "mem")) (denote-directory (expand-file-name "~/dc/")) (denote-prompts '(title file-type keywords)) 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[] = { |