Fix text-console detection vim

This commit is contained in:
Akemi Izuko 2023-12-23 20:14:20 -07:00
parent 25f71a8557
commit 4c515f9f76
Signed by: akemi
GPG key ID: 8DE0764E1809E9FC

View file

@ -139,7 +139,7 @@ command! Light3 :colo base16-atelier-estuary-light | FH
command! Light4 :colo base16-atelier-plateau-light | FH
" Switch theme to match terminal ====
if !has('termguicolors') || !has('gui_running')
if !has('termguicolors') || system("ps -e | awk '$4 ~ /Xorg|alacritty|sway/ {has_gui = 1} END {print has_gui + 0}'") == "0"
colo default
elseif executable('colo.sh')
exec 'colo ' . system('colo.sh --colorscheme')