From 87b96cc72cd1f4f99560bee65052d47f181c3536 Mon Sep 17 00:00:00 2001
From: Von Random <von@mechanus.net>
Date: Sat, 28 Dec 2024 23:28:20 +0200
Subject: [PATCH] wezterm: fullscreen hotkey

---
 gui/.config/wezterm/keybinds.lua | 6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)

diff --git a/gui/.config/wezterm/keybinds.lua b/gui/.config/wezterm/keybinds.lua
index 14fe638..15ae515 100644
--- a/gui/.config/wezterm/keybinds.lua
+++ b/gui/.config/wezterm/keybinds.lua
@@ -4,10 +4,12 @@ local leader_key = { key = 'g', mods = 'CTRL', timeout_milliseconds = 1000 }
 local keybinds = {
     { key = 'c', mods = 'META', action = act.CopyTo('Clipboard')    },
     { key = 'v', mods = 'META', action = act.PasteFrom('Clipboard') },
-    -- themes
-    { key = 'f', mods = 'LEADER', action = act.EmitEvent('override-fonts') },
+    -- overrides
+    { key = 'y', mods = 'LEADER', action = act.EmitEvent('override-fonts') },
     { key = 't', mods = 'LEADER', action = act.EmitEvent('override-theme') },
     { key = 'r', mods = 'LEADER', action = act.EmitEvent('override-reset') },
+    -- misc
+    { key = 'f', mods = 'LEADER', action = act.ToggleFullScreen },
     -- tabs
     { key = 'c', mods = 'LEADER', action = act.SpawnTab('DefaultDomain') },
     { key = 'n', mods = 'LEADER', action = act.ActivateTabRelative( 1) },