summaryrefslogtreecommitdiff
path: root/.config/guix
diff options
context:
space:
mode:
authorbd <bdunahu@colostate.edu>2024-05-15 18:45:12 -0600
committerbd <bdunahu@colostate.edu>2024-05-15 18:45:12 -0600
commit1901f2326216b05d6417e18ef52c8aab11451afa (patch)
treeb8760023736c536040994be7766bfbc1b53b2bb0 /.config/guix
parentcb0d9f1ec2f93cadc0693de99e3979621d7394ea (diff)
Add librewolf, more cleanup, lisp-related prog settings changes
Diffstat (limited to '.config/guix')
-rw-r--r--.config/guix/emacs-manifest.scm1
-rw-r--r--.config/guix/modules/dwm/config.def.h6
-rw-r--r--.config/guix/modules/gpg.scm1
3 files changed, 5 insertions, 3 deletions
diff --git a/.config/guix/emacs-manifest.scm b/.config/guix/emacs-manifest.scm
index 9bb92d3..466443e 100644
--- a/.config/guix/emacs-manifest.scm
+++ b/.config/guix/emacs-manifest.scm
@@ -19,6 +19,7 @@
"emacs-orderless"
"emacs-org-roam"
"emacs-popper"
+ "emacs-rainbow-delimiters"
"emacs-rainbow-mode"
"emacs-simple-httpd"
"emacs-slime"
diff --git a/.config/guix/modules/dwm/config.def.h b/.config/guix/modules/dwm/config.def.h
index 3ccb73d..3ee81ee 100644
--- a/.config/guix/modules/dwm/config.def.h
+++ b/.config/guix/modules/dwm/config.def.h
@@ -38,7 +38,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 },
- // { "Chromium-browser",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 *flameselect[] = { "flameshot", "launcher", NULL };
static const char *flameall[] = { "flameshot", "full", NULL };
/* other applications */
static const char *icecatcmd[] = { "icecat", NULL };
-// static const char *chromiumcmd[] = { "chromium", "--incognito", NULL };
+static const char *wolfcmd[] = { "librewolf", NULL };
static const char *emacscmd[] = { "emacsclient", "-nc", NULL };
@@ -98,7 +98,7 @@ static const Key keys[] = {
{ MODKEY|ShiftMask, XK_l, spawn, {.v = slockcmd } },
{ MODKEY|ShiftMask, XK_Return, spawn, {.v = emacscmd } },
{ MODKEY|ShiftMask, XK_b, spawn, {.v = icecatcmd } },
- // { MODKEY|ShiftMask, XK_c, spawn, {.v = chromiumcmd } },
+ { MODKEY|ShiftMask, XK_c, spawn, {.v = wolfcmd } },
{ MODKEY|ShiftMask, XK_o, spawn, SHCMD("xdotool type $(grep -v '^#' /home/bdunahu/Personal/scripts/bookmarks.txt | dmenu -i -l 4 | awk '{print $NF}')") },
{ MODKEY|ShiftMask, XK_p, spawn, SHCMD("passmenu --type") },
{ 0, XK_F6, spawn, {.v = togmute } },
diff --git a/.config/guix/modules/gpg.scm b/.config/guix/modules/gpg.scm
index 950f0ef..3688166 100644
--- a/.config/guix/modules/gpg.scm
+++ b/.config/guix/modules/gpg.scm
@@ -11,4 +11,5 @@
(home-gpg-agent-configuration
(pinentry-program
(file-append pinentry "/bin/pinentry"))
+ (max-cache-ttl 43200)
(ssh-support? #t)))))