[+] Add global color mode
This commit is contained in:
parent
865dea5dc3
commit
5e26a44c19
3 changed files with 28 additions and 10 deletions
|
@ -4,6 +4,8 @@ import colorsys
|
||||||
from typing import NamedTuple
|
from typing import NamedTuple
|
||||||
from typing_extensions import Literal
|
from typing_extensions import Literal
|
||||||
|
|
||||||
|
from hyfetch.constants import COLOR_MODE
|
||||||
|
|
||||||
AnsiMode = Literal['default', 'ansi', '8bit', 'rgb']
|
AnsiMode = Literal['default', 'ansi', '8bit', 'rgb']
|
||||||
|
|
||||||
|
|
||||||
|
@ -36,7 +38,7 @@ def color(msg: str) -> str:
|
||||||
code = code.replace(',', ' ').replace(';', ' ').replace(' ', ' ')
|
code = code.replace(',', ' ').replace(';', ' ').replace(' ', ' ')
|
||||||
rgb = tuple(int(c) for c in code.split(' '))
|
rgb = tuple(int(c) for c in code.split(' '))
|
||||||
|
|
||||||
msg = msg[:i] + RGB(*rgb).to_ansi_rgb(foreground=fore) + msg[end + 1:]
|
msg = msg[:i] + RGB(*rgb).to_ansi(mode=COLOR_MODE, foreground=fore) + msg[end + 1:]
|
||||||
|
|
||||||
return msg
|
return msg
|
||||||
|
|
||||||
|
@ -151,7 +153,7 @@ class RGB(NamedTuple):
|
||||||
"""
|
"""
|
||||||
raise NotImplementedError()
|
raise NotImplementedError()
|
||||||
|
|
||||||
def to_ansi(self, mode: AnsiMode, foreground: bool = True):
|
def to_ansi(self, mode: AnsiMode = COLOR_MODE, foreground: bool = True):
|
||||||
if mode == 'rgb':
|
if mode == 'rgb':
|
||||||
return self.to_ansi_rgb(foreground)
|
return self.to_ansi_rgb(foreground)
|
||||||
if mode == '8bit':
|
if mode == '8bit':
|
||||||
|
|
7
hyfetch/constants.py
Normal file
7
hyfetch/constants.py
Normal file
|
@ -0,0 +1,7 @@
|
||||||
|
from pathlib import Path
|
||||||
|
|
||||||
|
CONFIG_PATH = Path.home() / '.config/hyfetch.json'
|
||||||
|
VERSION = '1.0.7'
|
||||||
|
|
||||||
|
# Global color mode default to 8-bit for compatibility
|
||||||
|
COLOR_MODE = '8bit'
|
|
@ -9,14 +9,13 @@ from dataclasses import dataclass
|
||||||
from pathlib import Path
|
from pathlib import Path
|
||||||
from typing import Iterable
|
from typing import Iterable
|
||||||
|
|
||||||
|
from . import constants
|
||||||
from .color_util import AnsiMode, printc, color, clear_screen, RGB
|
from .color_util import AnsiMode, printc, color, clear_screen, RGB
|
||||||
|
from .constants import CONFIG_PATH, VERSION
|
||||||
from .neofetch_util import run_neofetch, replace_colors, get_custom_distro_ascii
|
from .neofetch_util import run_neofetch, replace_colors, get_custom_distro_ascii
|
||||||
from .presets import PRESETS, ColorProfile
|
from .presets import PRESETS, ColorProfile
|
||||||
from .serializer import json_stringify
|
from .serializer import json_stringify
|
||||||
|
|
||||||
CONFIG_PATH = Path.home() / '.config/hyfetch.json'
|
|
||||||
VERSION = '1.0.7'
|
|
||||||
|
|
||||||
|
|
||||||
# Obtain terminal size
|
# Obtain terminal size
|
||||||
try:
|
try:
|
||||||
|
@ -50,20 +49,25 @@ def check_config() -> Config:
|
||||||
return create_config()
|
return create_config()
|
||||||
|
|
||||||
|
|
||||||
def literal_input(prompt: str, options: Iterable[str], default: str) -> str:
|
def literal_input(prompt: str, options: Iterable[str], default: str, show_ops: bool = True) -> str:
|
||||||
"""
|
"""
|
||||||
Ask the user to provide an input among a list of options
|
Ask the user to provide an input among a list of options
|
||||||
|
|
||||||
:param prompt: Input prompt
|
:param prompt: Input prompt
|
||||||
:param options: Options
|
:param options: Options
|
||||||
:param default: Default option
|
:param default: Default option
|
||||||
|
:param show_ops: Show options
|
||||||
:return: Selection
|
:return: Selection
|
||||||
"""
|
"""
|
||||||
options = list(options)
|
options = list(options)
|
||||||
lows = [o.lower() for o in options]
|
lows = [o.lower() for o in options]
|
||||||
|
|
||||||
op_text = '|'.join([f'&l&n{o}&r' if o == default else o for o in options])
|
if show_ops:
|
||||||
printc(f'{prompt} ({op_text})')
|
op_text = '|'.join([f'&l&n{o}&r' if o == default else o for o in options])
|
||||||
|
printc(f'{prompt} ({op_text})')
|
||||||
|
else:
|
||||||
|
printc(f'{prompt} (default: {default})')
|
||||||
|
|
||||||
selection = input('> ') or default
|
selection = input('> ') or default
|
||||||
while not selection.lower() in lows:
|
while not selection.lower() in lows:
|
||||||
print(f'Invalid selection! {selection} is not one of {"|".join(options)}')
|
print(f'Invalid selection! {selection} is not one of {"|".join(options)}')
|
||||||
|
@ -105,8 +109,9 @@ def create_config() -> Config:
|
||||||
# Numpy not found, skip gradient test, use fallback
|
# Numpy not found, skip gradient test, use fallback
|
||||||
color_system = literal_input('Which &acolor &bsystem &rdo you want to use?',
|
color_system = literal_input('Which &acolor &bsystem &rdo you want to use?',
|
||||||
['8bit', 'rgb'], 'rgb')
|
['8bit', 'rgb'], 'rgb')
|
||||||
color_system = AnsiMode(color_system)
|
|
||||||
|
|
||||||
|
# Override global color mode
|
||||||
|
constants.COLOR_MODE = color_system
|
||||||
|
|
||||||
##############################
|
##############################
|
||||||
# 3. Choose preset
|
# 3. Choose preset
|
||||||
|
@ -180,6 +185,10 @@ def run():
|
||||||
if args.mode:
|
if args.mode:
|
||||||
config.mode = args.mode
|
config.mode = args.mode
|
||||||
|
|
||||||
|
# Override global color mode
|
||||||
|
constants.COLOR_MODE = config.mode
|
||||||
|
|
||||||
|
# Get preset
|
||||||
preset = PRESETS.get(config.preset)
|
preset = PRESETS.get(config.preset)
|
||||||
|
|
||||||
# Lighten
|
# Lighten
|
||||||
|
@ -193,7 +202,7 @@ def run():
|
||||||
asc = get_custom_distro_ascii(args.test_distro)
|
asc = get_custom_distro_ascii(args.test_distro)
|
||||||
print(asc)
|
print(asc)
|
||||||
print(replace_colors(asc, preset, config.mode)[0])
|
print(replace_colors(asc, preset, config.mode)[0])
|
||||||
exit(0)
|
return
|
||||||
|
|
||||||
# Run
|
# Run
|
||||||
run_neofetch(preset, config.mode)
|
run_neofetch(preset, config.mode)
|
||||||
|
|
Loading…
Reference in a new issue