From 6f0cfc059663206c513ac0d74483c4b8e7e2eaa4 Mon Sep 17 00:00:00 2001 From: debianpepper Date: Fri, 25 Aug 2023 21:01:58 +0900 Subject: [PATCH] Updated Signed-off-by: debianpepper --- python_modules/infra.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/python_modules/infra.py b/python_modules/infra.py index 478b3677..77c023b3 100644 --- a/python_modules/infra.py +++ b/python_modules/infra.py @@ -349,6 +349,8 @@ def boostrap_shared(): """ Copy specific folders in the boostrap location """ + term_size = os.get_terminal_size() +print('=' * term_size.columns) print("Copy Shared BootStrap") src_paths = ('/issue',) des_paths = ('/etc',) @@ -370,7 +372,7 @@ def xfce_configs(): """ Copy the xfce files. """ - print("Copy xfce4 configs") + print("####Copy xfce4 configs####") src_xfce = '/xfce/xfce4' des_xfce = '/etc/skel/.config/xfce4' print("INFO: Copying - " + HOME_FOLDER + src_xfce)