summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.config/emacs/libraries/exwm-outer-gaps.el4
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"