From de844c811e895f89987680157efcbcf33326c960 Mon Sep 17 00:00:00 2001 From: Derek Taylor Date: Fri, 16 Jan 2026 19:17:41 -0600 Subject: [PATCH] Minor edits. --- .config/emacs/config.el | 16 ++++++++-------- .config/niri/config.kdl | 2 +- 2 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.config/emacs/config.el b/.config/emacs/config.el index d256a08..efe0811 100644 --- a/.config/emacs/config.el +++ b/.config/emacs/config.el @@ -572,14 +572,14 @@ (eval-after-load 'org-indent '(diminish 'org-indent-mode)) -(custom-set-faces - '(org-level-1 ((t (:inherit outline-1 :height 1.7)))) - '(org-level-2 ((t (:inherit outline-2 :height 1.6)))) - '(org-level-3 ((t (:inherit outline-3 :height 1.5)))) - '(org-level-4 ((t (:inherit outline-4 :height 1.4)))) - '(org-level-5 ((t (:inherit outline-5 :height 1.3)))) - '(org-level-6 ((t (:inherit outline-5 :height 1.2)))) - '(org-level-7 ((t (:inherit outline-5 :height 1.1))))) + (custom-set-faces + '(org-level-1 ((t (:inherit outline-1 :height 1.7)))) + '(org-level-2 ((t (:inherit outline-2 :height 1.6)))) + '(org-level-3 ((t (:inherit outline-3 :height 1.5)))) + '(org-level-4 ((t (:inherit outline-4 :height 1.4)))) + '(org-level-5 ((t (:inherit outline-5 :height 1.3)))) + '(org-level-6 ((t (:inherit outline-5 :height 1.2)))) + '(org-level-7 ((t (:inherit outline-5 :height 1.1))))) (require 'org-tempo) diff --git a/.config/niri/config.kdl b/.config/niri/config.kdl index 9363853..85310ee 100644 --- a/.config/niri/config.kdl +++ b/.config/niri/config.kdl @@ -391,9 +391,9 @@ binds { Mod+Shift+Return hotkey-overlay-title="Run launcher: rofi" { spawn "rofi" "-show" "drun" "-show-icons"; } Mod+Alt+Minus hotkey-overlay-title="Lock screen: swaylock" { spawn "swaylock"; } Mod+E hotkey-overlay-title="Open emacs" { spawn "emacsclient" "-c" "-a" "emacs"; } + Mod+W hotkey-overlay-title="Open browser: brave" { spawn "brave"; } Mod+Shift+Q hotkey-overlay-title="Quit out of niri" { quit; } - // Use spawn-sh to run a shell command. Do this if you need pipes, multiple commands, etc. // Note: the entire command goes as a single argument. It's passed verbatim to `sh -c`. // For example, this is a standard bind to toggle the screen reader (orca).