Revert "please work"

This reverts commit f3b0c88278.
This commit is contained in:
Sakooooo 2023-08-11 13:00:10 +03:00
parent d7cf754399
commit 31511fe77d
Signed by: sako
GPG key ID: 3FD715D87D7725E0

View file

@ -86,7 +86,17 @@ M.banner_alt_2 = {
function M.get_sections() function M.get_sections()
local header = { local header = {
type = "text", type = "text",
val = banner, val = function()
local alpha_wins = vim.tbl_filter(function(win)
local buf = vim.api.nvim_win_get_buf(win)
return vim.api.nvim_buf_get_option(buf, "filetype") == "alpha"
end, vim.api.nvim_list_wins())
if vim.api.nvim_win_get_height(alpha_wins[#alpha_wins]) < 36 then
return M.banner_small
end
return banner
end,
opts = { opts = {
position = "center", position = "center",
hl = "Label", hl = "Label",