rearrange folder structure

This commit is contained in:
Riley Housden 2022-02-18 22:52:36 -05:00
parent 997d1ee4de
commit e0488cf830
Signed by: InValidFire
GPG Key ID: 0D6208F6DF56B4D8
19 changed files with 5 additions and 9 deletions

View File

@ -8,9 +8,9 @@ elif $HOSTNAME == "riley-desktop":
$XONSH_COLOR_STYLE = 'default'
xontrib load argcomplete autovox jedi z bashisms
source "functions.xsh"
source "exceptions.xsh"
source "aliases.xsh"
source "~/xsh/functions.xsh"
source "~/xsh/exceptions.xsh"
source "~/xsh/aliases.xsh"
# TODO: Fix with Arch-based distros
# import addins # my extra stuffs :p

View File

Before

Width:  |  Height:  |  Size: 2.4 MiB

After

Width:  |  Height:  |  Size: 2.4 MiB

View File

Before

Width:  |  Height:  |  Size: 1.2 MiB

After

Width:  |  Height:  |  Size: 1.2 MiB

View File

Before

Width:  |  Height:  |  Size: 110 KiB

After

Width:  |  Height:  |  Size: 110 KiB

View File

Before

Width:  |  Height:  |  Size: 36 KiB

After

Width:  |  Height:  |  Size: 36 KiB

View File

Before

Width:  |  Height:  |  Size: 2.3 MiB

After

Width:  |  Height:  |  Size: 2.3 MiB

View File

Before

Width:  |  Height:  |  Size: 7.5 MiB

After

Width:  |  Height:  |  Size: 7.5 MiB

View File

Before

Width:  |  Height:  |  Size: 1.8 MiB

After

Width:  |  Height:  |  Size: 1.8 MiB

View File

Before

Width:  |  Height:  |  Size: 192 KiB

After

Width:  |  Height:  |  Size: 192 KiB

View File

Before

Width:  |  Height:  |  Size: 3.3 MiB

After

Width:  |  Height:  |  Size: 3.3 MiB

View File

Before

Width:  |  Height:  |  Size: 3.2 MiB

After

Width:  |  Height:  |  Size: 3.2 MiB

View File

Before

Width:  |  Height:  |  Size: 2.7 MiB

After

Width:  |  Height:  |  Size: 2.7 MiB

View File

Before

Width:  |  Height:  |  Size: 330 KiB

After

Width:  |  Height:  |  Size: 330 KiB

View File

@ -1,4 +0,0 @@
from .version import Version
from .package import Package
__all__ = ['Version', 'Package']

View File

@ -1,4 +1,4 @@
source "functions.xsh"
source xsh/functions.xsh
def _debug():
if $XONSH_SHOW_TRACEBACK:

View File

@ -1,4 +1,4 @@
source "exceptions.xsh"
source xsh/exceptions.xsh
def in_wsl() -> bool:
"""Determines if the system is running inside a WSL environment."""