diff options
author | Marc Coquand <marc@mccd.space> | 2024-11-02 11:51:25 +0200 |
---|---|---|
committer | Marc Coquand <marc@mccd.space> | 2024-11-02 11:51:25 +0200 |
commit | 62ba64f341adbd4d46f395aabf9b2fe1b379a456 (patch) | |
tree | 7cb66aac19ac8ba6a95e357405a49b82580a1960 /home | |
parent | 4a752006731d59b8fce5e0525305b842c35c6acd (diff) | |
download | guix-62ba64f341adbd4d46f395aabf9b2fe1b379a456.tar.gz guix-62ba64f341adbd4d46f395aabf9b2fe1b379a456.tar.bz2 guix-62ba64f341adbd4d46f395aabf9b2fe1b379a456.zip |
.
Diffstat (limited to 'home')
-rw-r--r-- | home/dots/.emacs | 10 | ||||
-rwxr-xr-x | home/dots/.xinitrc | 2 |
2 files changed, 7 insertions, 5 deletions
diff --git a/home/dots/.emacs b/home/dots/.emacs index f95e716..27556eb 100644 --- a/home/dots/.emacs +++ b/home/dots/.emacs @@ -358,7 +358,9 @@ (use-package enwc :ensure t :init - (setq enwc-default-backend 'nm) + (setq enwc-default-backend 'nm + enwc-wired-device "lo" + enwc-wireless-device "wlp61s0") (defun list-notifications () (mapconcat #'ednc-format-notification (ednc-notifications) "")) @@ -751,6 +753,7 @@ (org-mode . variable-pitch-mode))) (use-package appt + :demand t ;; Taken from https://igormelo.org/you_dont_need_org_alert.html ;; Enables notifications for org :init @@ -767,7 +770,6 @@ (org-agenda-to-appt t))) (appt-activate t)) - (use-package rec-mode :ensure t) @@ -915,7 +917,7 @@ :password (shell-command-to-string "pass show mccd/freshrss"))) ;; enable elfeed-protocol elfeed-protocol-enabled-protocols '(fever) - elfeed-curl-extra-arguments '("--insecure")) ;necessary for https without a trust certificate + elfeed-curl-extra-arguments '("--insecure")) ; necessary for https without a trust certificate (elfeed-set-timeout 36000) (global-set-key (kbd "C-x w") 'elfeed)) @@ -995,7 +997,7 @@ '(org-agenda-structure ((t ()))) '(org-agenda-date-today ((t (:weight bold)))) '(org-agenda-date-weekend ((t ()))) - '(help-key-binding ((t (:weight semibold :background "#EEEEE8" :box (:line-width (5 . -1) :color "#EEEEE8"))))) + '(help-key-binding ((t (:weight semibold :background "#EEEEE8" :box (:line-width (1 . -1) :color "#AAAAA8"))))) '(org-agenda-done ((t (:strike-through "on" :inherit org-time-grid :extend nil)))) '(org-done ((t (:strike-through "on" :weight bold :inherit org-agenda-dimmed-todo-face :extend nil)))) '(org-todo ((t (:weight bold)))) diff --git a/home/dots/.xinitrc b/home/dots/.xinitrc index 2fe5129..6407dd7 100755 --- a/home/dots/.xinitrc +++ b/home/dots/.xinitrc @@ -26,4 +26,4 @@ gsettings set org.gnome.desktop.interface cursor-theme Adwaita & xsetroot -cursor_name left_ptr & xset r rate 200 60 & emacs --daemon --eval "(require 'exwm)" -f exwm-enable -exec emacsclient -c +exec dbus-run-session emacsclient -c |