refactor: don't clear scrollback on clear

Signed-off-by: Dominik Willner <th33xitus@gmail.com>
This commit is contained in:
dw-0
2024-10-24 12:24:05 +02:00
parent ff6162d799
commit dfa0036326
2 changed files with 3 additions and 3 deletions

View File

@@ -10,7 +10,7 @@
#=======================================================================#
set -e
clear
clear -x
# make sure we have the correct permissions while running the script
umask 022
@@ -110,7 +110,7 @@ function launch_kiauh_v6() {
export PYTHONPATH="${entrypoint}"
clear
clear -x
python3 "${entrypoint}/kiauh.py"
}

View File

@@ -29,7 +29,7 @@ from utils.input_utils import get_selection_input
def clear() -> None:
subprocess.call("clear", shell=True)
subprocess.call("clear -x", shell=True)
def print_header() -> None: