local h = io.popen('grep breezedark $HOME/.config/kdeglobals') local output = h:read("*a") h:close() vim.cmd('colorscheme oxocarbon') if string.len(output) > 0 then vim.o.background = 'dark' else vim.o.background = 'light' end vim.o.laststatus = 3