diff --git a/config/ghostty/config b/config/ghostty/config index a46f41f..a197eae 100644 --- a/config/ghostty/config +++ b/config/ghostty/config @@ -2,7 +2,7 @@ # General settings # ------------------------------------------------------------------------------ -auto-update-channel = tip +auto-update-channel = stable # ------------------------------------------------------------------------------ # Theme settings @@ -11,7 +11,7 @@ auto-update-channel = tip theme = tango-with-monokai window-theme = dark -background-opacity = 0.8 +background-opacity = 0.75 background-blur-radius = 20 # ------------------------------------------------------------------------------ @@ -75,5 +75,8 @@ window-step-resize = true keybind = super+c=copy_to_clipboard keybind = super+v=paste_from_clipboard +# Toggle Visibility (cmd+ctrl+r) +keybind = global:super+ctrl+r=toggle_visibility + # Quick Terminal (alt+`) keybind = global:alt+grave_accent=toggle_quick_terminal diff --git a/hammerspoon/hosts/hati.lua b/hammerspoon/hosts/hati.lua index 504ab87..518df25 100644 --- a/hammerspoon/hosts/hati.lua +++ b/hammerspoon/hosts/hati.lua @@ -35,8 +35,8 @@ local function init_hotkeys() ) -- Use Warp as my primary terminal application. - apptoggle:bind({ 'cmd', 'ctrl' }, 'R', { 'Warp' }) - apphider:autoHide('Warp') -- auto-hide Warp when it loses focus + -- apptoggle:bind({ 'cmd', 'ctrl' }, 'R', { 'Warp' }) + -- apphider:autoHide('Warp') -- auto-hide Warp when it loses focus end --------------------------------------------------------------------------------