mirror of
https://github.com/Faraphel/Atlas-Install.git
synced 2025-07-02 02:38:30 +02:00
41 lines
881 B
Python
41 lines
881 B
Python
import os
|
|
import sys
|
|
from threading import Thread
|
|
from typing import Callable
|
|
|
|
|
|
__version__ = (0, 12, 0)
|
|
__author__ = 'Faraphel'
|
|
|
|
|
|
discord_url = "https://discord.gg/HEYW5v8ZCd"
|
|
github_wiki_url = "https://github.com/Faraphel/MKWF-Install/wiki/help"
|
|
|
|
Ko = 1_000
|
|
Mo = 1_000 * Ko
|
|
Go = 1_000 * Mo
|
|
|
|
minimum_space_available = 15*Go
|
|
|
|
|
|
def threaded(func: Callable) -> Callable:
|
|
"""
|
|
Decorate a function to run in a separate thread
|
|
:param func: a function
|
|
:return: the decorated function
|
|
"""
|
|
|
|
def wrapper(*args, **kwargs):
|
|
# run the function in a Daemon, so it will stop when the main thread stops
|
|
thread = Thread(target=func, args=args, kwargs=kwargs, daemon=True)
|
|
thread.start()
|
|
return thread
|
|
|
|
return wrapper
|
|
|
|
|
|
def restart_program():
|
|
"""
|
|
Restart the program
|
|
"""
|
|
os.execl(sys.executable, sys.executable, *sys.argv)
|