mirror of
https://github.com/ViViDboarder/shoestrap.git
synced 2024-11-21 23:16:33 +00:00
Add tokyonight to derived colors
This commit is contained in:
parent
b81e79976e
commit
77106e91de
@ -50,7 +50,7 @@ def run_applescript(script: str) -> Tuple[int, str, str]:
|
|||||||
return proc.returncode, str(stdout).strip(), str(stderr).strip()
|
return proc.returncode, str(stdout).strip(), str(stderr).strip()
|
||||||
|
|
||||||
|
|
||||||
def get_terminal_profile(force: bool=False):
|
def get_terminal_profile(force: bool = False):
|
||||||
"""Returns the terminal profile from TERM_PROFILE or
|
"""Returns the terminal profile from TERM_PROFILE or
|
||||||
derrives through detecting the profile"""
|
derrives through detecting the profile"""
|
||||||
if not force and TERM_VAR in os.environ:
|
if not force and TERM_VAR in os.environ:
|
||||||
@ -140,6 +140,8 @@ def get_nvim_colorscheme(
|
|||||||
colorscheme = "default"
|
colorscheme = "default"
|
||||||
elif "Solarized" in terminal_profile:
|
elif "Solarized" in terminal_profile:
|
||||||
colorscheme = "solarized"
|
colorscheme = "solarized"
|
||||||
|
elif "Tokyo Night" in terminal_profile:
|
||||||
|
colorscheme = "tokyonight"
|
||||||
|
|
||||||
return colorscheme
|
return colorscheme
|
||||||
|
|
||||||
@ -187,9 +189,14 @@ def get_fish_theme(
|
|||||||
fish_theme = "wombat"
|
fish_theme = "wombat"
|
||||||
elif "Solarized" in terminal_profile:
|
elif "Solarized" in terminal_profile:
|
||||||
if is_dark:
|
if is_dark:
|
||||||
fish_theme = "solarized dark"
|
fish_theme = "solarized_dark"
|
||||||
else:
|
else:
|
||||||
fish_theme = "solarized light"
|
fish_theme = "solarized_light"
|
||||||
|
elif "Tokyo Night" in terminal_profile:
|
||||||
|
if is_dark:
|
||||||
|
fish_theme = "fish_tokyonight_night"
|
||||||
|
else:
|
||||||
|
fish_theme = "fish_tokyonight_day"
|
||||||
|
|
||||||
return fish_theme
|
return fish_theme
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user