mirror of
https://github.com/deskflow/deskflow.git
synced 2026-07-01 21:02:39 +08:00
* Only show error/success conditionally * Make choco install more robust * Improve deps script to remind about restarting shells * Add note about Mac Qt * Update ChangeLog
10 lines
308 B
Python
10 lines
308 B
Python
import colorama # type: ignore
|
|
from colorama import Fore # type: ignore
|
|
|
|
colorama.init()
|
|
|
|
SUCCESS_TEXT = f"{Fore.LIGHTGREEN_EX}Success:{Fore.RESET}"
|
|
ERROR_TEXT = f"{Fore.RED}Error:{Fore.RESET}"
|
|
WARNING_TEXT = f"{Fore.LIGHTYELLOW_EX}Warning:{Fore.RESET}"
|
|
HINT_TEXT = f"{Fore.LIGHTBLUE_EX}Hint:{Fore.RESET}"
|