Cli2gui Index / Cli2gui / Gui / Helpers
Auto-generated documentation for cli2gui.gui.helpers module.
Set the base24 theme from a base24 scheme.yaml to the application.
themeFile
str - path to file
list[str]
- theme to set
def _themeFromFile(themeFile: str) -> list[str]: ...
Set the base24 theme to the application.
theme (Union[str, list[str]]): the light theme darkTheme (Union[str, list[str]]): the dark theme
def get_base24_theme(
theme: str | list[str], darkTheme: str | list[str]
) -> list[str]: ...
Monkeypatch for getostheme.isDarkMode.
def isDarkMode() -> bool: ...
Get the contents of a file path, attempt to parse with catpandoc..pandoc2plain.
file_path
str - path to the file (absolute recommended)
Type: str file contents
def read_file(file_path: str, maxLines: int = 200) -> str: ...
Convert a string to sentence case.
def stringSentencecase(string: str) -> str: ...
Convert a string to title case.
def stringTitlecase(string: str, splitStr: str = "ALL") -> str: ...