Signed-off-by: debianpepper <pdpdebdevuan@protonmail.com>
This commit is contained in:
debianpepper 2023-08-25 20:57:00 +09:00
parent 7e3fe9fdc6
commit dd4577373b
1 changed files with 4 additions and 4 deletions

View File

@ -373,20 +373,20 @@ def xfce_configs():
print("Copy xfce4 configs")
src_xfce = '/xfce/xfce4'
des_xfce = '/etc/skel/.config/xfce4'
print("INFO: Copying - " + HOME_FOLDER + source)
print("INFO: Copying - " + HOME_FOLDER + src_xfce)
shutil.copytree(HOME_FOLDER + src_xfce,
HOME_FOLDER + WPCHROOT + des_xfce,
dirs_exist_ok = True
)
print("INFO: Done - " + HOME_FOLDER + WPCHROOT + des)
print("INFO: Done - " + HOME_FOLDER + WPCHROOT + des_xfce)
src_thunar = '/xfce/Thunar'
des_thunar = '/etc/skel/.config/Thunar'
print("INFO: Copying - " + HOME_FOLDER + source)
print("INFO: Copying - " + HOME_FOLDER + src_thunar)
shutil.copytree(HOME_FOLDER + src_thunar,
HOME_FOLDER + WPCHROOT + des_thunar,
dirs_exist_ok = True
)
print("INFO: Done - " + HOME_FOLDER + WPCHROOT + des)
print("INFO: Done - " + HOME_FOLDER + WPCHROOT + des_thunar)
def gnome_flahsbak_configs():