From b78bbf200354b26db366c13eb878b8ef281e7fcc Mon Sep 17 00:00:00 2001 From: Noah Masur <7386960+nmasur@users.noreply.github.com> Date: Tue, 18 Jun 2024 12:50:04 -0600 Subject: [PATCH] fix: wezterm fullscreen keybind --- modules/common/applications/wezterm.nix | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/modules/common/applications/wezterm.nix b/modules/common/applications/wezterm.nix index 0301b62..7fee8ee 100644 --- a/modules/common/applications/wezterm.nix +++ b/modules/common/applications/wezterm.nix @@ -149,6 +149,18 @@ mods = 'SHIFT|CTRL', action = wezterm.action.DisableDefaultAssignment }, + -- alt-enter was "fullscreen" + { + key = 'Enter', + mods = 'ALT', + action = wezterm.action.DisableDefaultAssignment + }, + -- make super-f "fullscreen" + { + key = 'f', + mods = 'SUPER', + action = wezterm.action.ToggleFullScreen + }, -- project switcher { key = 'P',