Files
FastAnime/fastanime/cli/commands/config.py
2024-07-17 00:03:24 +03:00

24 lines
584 B
Python

import os
import subprocess
import click
from rich import print
from ... import USER_CONFIG_PATH
from ..utils.tools import exit_app
@click.command(
help="Opens up your fastanime config in your preferred editor",
short_help="Edit your config",
)
def configure():
if EDITOR := os.environ.get("EDITOR"):
subprocess.run([EDITOR, USER_CONFIG_PATH])
exit_app()
else:
print("$EDITOR environment variable missing :confused:")
print("Please Set the $EDITOR environment variable to enable editing of config")
# create_desktop_shortcut()