updates wezterm config
This commit is contained in:
parent
7e48b724e5
commit
bd0612511d
3 changed files with 10 additions and 6 deletions
|
|
@ -52,4 +52,10 @@ function M.move_pane(key, direction)
|
||||||
}
|
}
|
||||||
end
|
end
|
||||||
|
|
||||||
|
function M.get_zoom_state(active_pane)
|
||||||
|
local zoom_state = active_pane:is_zoomed() and "[Z] " or ""
|
||||||
|
|
||||||
|
return zoom_state
|
||||||
|
end
|
||||||
|
|
||||||
return M
|
return M
|
||||||
|
|
|
||||||
|
|
@ -17,12 +17,7 @@ function M.apply_to_config(config)
|
||||||
{
|
{
|
||||||
key = "-",
|
key = "-",
|
||||||
mods = "LEADER",
|
mods = "LEADER",
|
||||||
action = wezterm.action.SplitVertical({ domain = "CurrentPaneDomain" }),
|
action = wezterm.action.SplitPane({ direction = "Down", size = { Percent = 30 } }),
|
||||||
},
|
|
||||||
{
|
|
||||||
key = "-",
|
|
||||||
mods = "LEADER",
|
|
||||||
action = wezterm.action.SplitVertical({ domain = "CurrentPaneDomain" }),
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
key = "x",
|
key = "x",
|
||||||
|
|
|
||||||
|
|
@ -5,9 +5,12 @@ local helpers = require("helpers")
|
||||||
local M = {}
|
local M = {}
|
||||||
|
|
||||||
local function get_elements(for_window)
|
local function get_elements(for_window)
|
||||||
|
local active_pane = for_window:active_pane()
|
||||||
|
|
||||||
return {
|
return {
|
||||||
{ Background = { Color = theme.colors().tab_bar.background } },
|
{ Background = { Color = theme.colors().tab_bar.background } },
|
||||||
{ Foreground = { Color = theme.colors().tab_bar.inactive_tab.fg_color } },
|
{ Foreground = { Color = theme.colors().tab_bar.inactive_tab.fg_color } },
|
||||||
|
{ Text = helpers.get_zoom_state(active_pane) },
|
||||||
{ Text = "h:" .. wezterm.hostname() .. " " },
|
{ Text = "h:" .. wezterm.hostname() .. " " },
|
||||||
{ Text = "upgrades:" .. helpers.get_outdated_packages() .. " " },
|
{ Text = "upgrades:" .. helpers.get_outdated_packages() .. " " },
|
||||||
{ Text = "bat:" .. helpers.get_primary_battery_state() .. " " },
|
{ Text = "bat:" .. helpers.get_primary_battery_state() .. " " },
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue