diff options
author | bd <bdunahu@operationnull.com> | 2025-06-03 14:22:17 -0400 |
---|---|---|
committer | bd <bdunahu@operationnull.com> | 2025-06-03 14:22:17 -0400 |
commit | a015ca3271b389ad0ebd30eefc0a75695e7a2945 (patch) | |
tree | 33fdf724eaab459f6f8c79a01a2f9f368e9a10ff | |
parent | e4e27dc11a20eeebf06eed83bbc5d150ee53b846 (diff) |
Allow modification of gaps with window command dispatcher
-rw-r--r-- | .config/emacs/modules/bd--window.el | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/.config/emacs/modules/bd--window.el b/.config/emacs/modules/bd--window.el index 59f7dbc..bdc173b 100644 --- a/.config/emacs/modules/bd--window.el +++ b/.config/emacs/modules/bd--window.el @@ -48,7 +48,10 @@ ["" ("a" "alpha" bd/set-frame-alpha) ("w" "wallpaper" bd/set-bg) - ("t" "theme" load-theme)]]) + ("t" "theme" load-theme)] + ["" + ("z" "widen gaps" exwm-outer-gaps-increment :transient t) + ("x" "shrink gaps" exwm-outer-gaps-decrement :transient t)]]) (keymap-global-set "C-c w" #'bd/layout-dispatcher) |