Skip to content

Commit

Permalink
feat: update bindings + update inactive_pane_hsb
Browse files Browse the repository at this point in the history
  • Loading branch information
KevinSilvester committed Mar 4, 2024
1 parent e5da7af commit 5e2d159
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
4 changes: 2 additions & 2 deletions config/appearance.lua
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ return {
-- font_size = fonts.font_size,
},
inactive_pane_hsb = {
saturation = 0.7,
brightness = 0.6,
saturation = 0.9,
brightness = 0.65,
},
}
4 changes: 3 additions & 1 deletion config/bindings.lua
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,8 @@ local keys = {
mods = 'NONE',
action = act.ShowLauncherArgs({ flags = 'FUZZY|WORKSPACES' }),
},
-- toggle fullscreen
{ key = 'F11', mods = 'NONE', action = act.ToggleFullScreen },
{ key = 'F12', mods = 'NONE', action = act.ShowDebugOverlay },
{ key = 'f', mods = mod.SUPER, action = act.Search({ CaseInSensitiveString = '' }) },
{
Expand Down Expand Up @@ -113,7 +115,7 @@ local keys = {
},

-- panes: zoom+close pane
{ key = 'z', mods = mod.SUPER_REV, action = act.TogglePaneZoomState },
{ key = 'Enter', mods = mod.SUPER, action = act.TogglePaneZoomState },
{ key = 'w', mods = mod.SUPER, action = act.CloseCurrentPane({ confirm = false }) },

-- panes: navigation
Expand Down

0 comments on commit 5e2d159

Please sign in to comment.