This commit is contained in:
alisceon 2026-01-01 17:35:58 +01:00
parent d2a352c965
commit 1bccd6aad5
2 changed files with 25 additions and 21 deletions

View file

@ -29,7 +29,7 @@ if $XONSH_INTERACTIVE:
$LESS_TERMCAP_se = "\033[0m"
$LESS_TERMCAP_us = "\033[00;36m"
$LESS_TERMCAP_ue = "\033[0m"
$SHELL_THICKENED = "FALSE"
## XONTRIB ##
if importlib.util.find_spec("xontrib.coreutils") is not None:
xontrib load coreutils
@ -48,7 +48,9 @@ if $XONSH_INTERACTIVE:
XSH.env['fzf_ssh_binding'] = "c-s" # Ctrl+S
XSH.env['fzf_file_binding'] = "c-t" # Ctrl+T
XSH.env['fzf_dir_binding'] = "c-g" # Ctrl+G
if $SHELL_THICCNESS == "HIGH":
## THICC SHELL
if $SHELL_THICCNESS == "HIGH" and not $SHELL_THICKENED == "TRUE":
import os
import sys
import subprocess
@ -61,10 +63,12 @@ if $XONSH_INTERACTIVE:
import scapy.all
import yaml
import requests
print_color("{BOLD_GREEN}THICC SHELL LOADED!{RESET}")
$SHELL_THICKENED = "TRUE"
## THEO GREETING ##
hour = t0.hour
theo | kittycatsay
dt = round((datetime.now() - t0).microseconds/1000000, 2)
print("Load time:", dt, "seconds")
print("Load time:", dt, "seconds")
if $SHELL_THICKENED == "TRUE":
print_color("{BOLD_GREEN}THICC SHELL LOADED!{RESET}")