added wsl support for bwg

This commit is contained in:
Riley Housden 2022-01-27 02:26:41 -05:00
parent 640bda7ecc
commit f5faaaa51b
Signed by: InValidFire
GPG Key ID: 0D6208F6DF56B4D8
1 changed files with 16 additions and 2 deletions

View File

@ -10,9 +10,23 @@ class CommandNotFoundException(Exception):
def __init__(self, command):
super().__init__(f"Command '{command}' not found.")
# Windows Subsystem for Linux stuff
def in_wsl() -> bool:
version = p'/proc/version'.read_text()
if "microsoft" in version:
return True
return False
if in_wsl():
$GPG_TTY=$(tty)
def to_clipboard(text: str):
requires("xclip")
$(echo -n @(text) | xclip -sel clipboard)
if in_wsl():
$(echo -n @(text) | clip.exe)
else:
requires("xclip")
$(echo -n @(text) | xclip -sel clipboard)
def requires(command: str):
if not !(which @(command)):