diff --git a/home/config-files/wezterm.lua b/home/config-files/wezterm.lua index c97d67d..fb8088f 100644 --- a/home/config-files/wezterm.lua +++ b/home/config-files/wezterm.lua @@ -114,11 +114,12 @@ wezterm.on('update-status', function(window, pane) local bat = '' for _, b in ipairs(wezterm.battery_info()) do - bat = '|🔋 ' .. string.format('%.0f%%', b.state_of_charge * 100) .. ' | ' + -- bat = '|🔋 ' .. string.format('%.0f%%', b.state_of_charge * 100) .. ' | ' + bat = '| BAT ' .. string.format('%.0f%%', b.state_of_charge * 100) .. ' | ' end window:set_right_status(wezterm.format { - { Text = bat .. date }, + { Text = bat .. date .. ' 🐱 |' }, }) end) wezterm.on('update-status', function(window, pane)