diff options
author | bd <bdunahu@operationnull.com> | 2025-06-03 14:27:17 -0400 |
---|---|---|
committer | bd <bdunahu@operationnull.com> | 2025-06-03 14:27:17 -0400 |
commit | d5a48b1fc6dc8c32b7ccaa0e5bb55e13dca0456b (patch) | |
tree | 02cb4c76b62a90db303f0e33ac9ae7ad846ddbb4 | |
parent | a015ca3271b389ad0ebd30eefc0a75695e7a2945 (diff) |
Correct exwm-outer-gaps-max-width to be in package namespace
-rw-r--r-- | .config/emacs/libraries/exwm-outer-gaps.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.config/emacs/libraries/exwm-outer-gaps.el b/.config/emacs/libraries/exwm-outer-gaps.el index 9536cfa..c315e8b 100644 --- a/.config/emacs/libraries/exwm-outer-gaps.el +++ b/.config/emacs/libraries/exwm-outer-gaps.el @@ -23,7 +23,7 @@ (defcustom exwm-outer-gaps-increment-step 5 "Default increment/decrement value for gaps.") -(defcustom exwm-outer-max-gaps-width +(defcustom exwm-outer-gaps-max-width (* exwm-outer-gaps-increment-step 20) "The maximum size of the gaps.") @@ -46,7 +46,7 @@ "Sets the gap width to WIDTH. Automatically clamps the size of the gaps from 0 to `exwm-outer-max-gaps-width'" (setq exwm-outer-gaps-width - (max 0 (min width exwm-outer-max-gaps-width)))) + (max 0 (min width exwm-outer-gaps-max-width)))) (defun exwm-outer-gaps-increment () "Increment the outer gaps by exwm-outer-gaps-increment-step" |