Updated
Signed-off-by: debianpepper <pdpdebdevuan@protonmail.com>
This commit is contained in:
parent
6b4a389b79
commit
71a899c3a5
|
@ -159,9 +159,9 @@ def set_symlinks():
|
||||||
"""
|
"""
|
||||||
Set the symliknks that are used for all builds.
|
Set the symliknks that are used for all builds.
|
||||||
"""
|
"""
|
||||||
print('=' * term_size.columns)
|
|
||||||
logger.info("Copy Symlinks")
|
logger.info("Copy Symlinks")
|
||||||
print('=' * term_size.columns)
|
|
||||||
pep_info = '/usr/share/python-apt/templates/Peppermint.info'
|
pep_info = '/usr/share/python-apt/templates/Peppermint.info'
|
||||||
pep_mirror = '/usr/share/python-apt/templates/Peppermint.mirrors'
|
pep_mirror = '/usr/share/python-apt/templates/Peppermint.mirrors'
|
||||||
pep_csv = '/usr/share/distro-info/peppermint.csv'
|
pep_csv = '/usr/share/distro-info/peppermint.csv'
|
||||||
|
@ -181,9 +181,9 @@ def shared_folders():
|
||||||
This function will get the files that are shared commonly amongst
|
This function will get the files that are shared commonly amongst
|
||||||
all the builds,
|
all the builds,
|
||||||
"""
|
"""
|
||||||
print('=' * term_size.columns)
|
|
||||||
logger.info("Copy Shared folders")
|
logger.info("Copy Shared folders")
|
||||||
print('=' * term_size.columns)
|
|
||||||
src_paths = ('/plymouth/lines',
|
src_paths = ('/plymouth/lines',
|
||||||
'/application',
|
'/application',
|
||||||
'/font',
|
'/font',
|
||||||
|
@ -241,9 +241,9 @@ def icons_themes():
|
||||||
This function will get the icons and themse that are
|
This function will get the icons and themse that are
|
||||||
for all the builds
|
for all the builds
|
||||||
"""
|
"""
|
||||||
print('=' * term_size.columns)
|
|
||||||
logger.info("Copy icons and themes")
|
logger.info("Copy icons and themes")
|
||||||
print('=' * term_size.columns)
|
|
||||||
src_paths =('/theme/Marwaita Dark Debian/',
|
src_paths =('/theme/Marwaita Dark Debian/',
|
||||||
'/theme/Marwaita Dark Manjaro/',
|
'/theme/Marwaita Dark Manjaro/',
|
||||||
'/theme/Marwaita Dark Peppermint/',
|
'/theme/Marwaita Dark Peppermint/',
|
||||||
|
@ -295,9 +295,9 @@ def shared_files():
|
||||||
This silll copy all specific files that a used for all
|
This silll copy all specific files that a used for all
|
||||||
builds.
|
builds.
|
||||||
"""
|
"""
|
||||||
print('=' * term_size.columns)
|
|
||||||
logger.info("Copy Shared Files")
|
logger.info("Copy Shared Files")
|
||||||
print('=' * term_size.columns)
|
|
||||||
src_paths = ('/aliases/bash_aliases',
|
src_paths = ('/aliases/bash_aliases',
|
||||||
#'/sources/peppermint.list',
|
#'/sources/peppermint.list',
|
||||||
'/PepProTools/xDaily',
|
'/PepProTools/xDaily',
|
||||||
|
@ -337,9 +337,9 @@ def fusato_configs():
|
||||||
"""
|
"""
|
||||||
Copy specific folders in the root of fusato configs
|
Copy specific folders in the root of fusato configs
|
||||||
"""
|
"""
|
||||||
print('=' * term_size.columns)
|
|
||||||
logger.info("Copy Fusato Configs")
|
logger.info("Copy Fusato Configs")
|
||||||
print('=' * term_size.columns)
|
|
||||||
src_paths = ('/hooks/normal',)
|
src_paths = ('/hooks/normal',)
|
||||||
des_paths = ('/hooks/normal',)
|
des_paths = ('/hooks/normal',)
|
||||||
src_q = collections.deque(src_paths)
|
src_q = collections.deque(src_paths)
|
||||||
|
@ -360,9 +360,9 @@ def boostrap_shared():
|
||||||
"""
|
"""
|
||||||
Copy specific folders in the boostrap location
|
Copy specific folders in the boostrap location
|
||||||
"""
|
"""
|
||||||
print('=' * term_size.columns)
|
|
||||||
logger.info("Copy Shared BootStrap")
|
logger.info("Copy Shared BootStrap")
|
||||||
print('=' * term_size.columns)
|
|
||||||
src_paths = ('/issue',)
|
src_paths = ('/issue',)
|
||||||
des_paths = ('/etc',)
|
des_paths = ('/etc',)
|
||||||
src_q = collections.deque(src_paths)
|
src_q = collections.deque(src_paths)
|
||||||
|
@ -383,9 +383,9 @@ def xfce_configs():
|
||||||
"""
|
"""
|
||||||
Copy the xfce files.
|
Copy the xfce files.
|
||||||
"""
|
"""
|
||||||
print('=' * term_size.columns)
|
|
||||||
logger.info("Copy xfce4 configs")
|
logger.info("Copy xfce4 configs")
|
||||||
print('=' * term_size.columns)
|
|
||||||
src_xfce = '/xfce/xfce4'
|
src_xfce = '/xfce/xfce4'
|
||||||
des_xfce = '/etc/skel/.config/xfce4'
|
des_xfce = '/etc/skel/.config/xfce4'
|
||||||
logger.info(MSG_COPY + HOME_FOLDER + src_xfce)
|
logger.info(MSG_COPY + HOME_FOLDER + src_xfce)
|
||||||
|
@ -408,7 +408,7 @@ def gnome_flahsbak_configs():
|
||||||
"""
|
"""
|
||||||
Copy the gnome flashback files
|
Copy the gnome flashback files
|
||||||
"""
|
"""
|
||||||
print('=' * term_size.columns)
|
|
||||||
logger.info("Copy Gnome Flashback configs")
|
logger.info("Copy Gnome Flashback configs")
|
||||||
src_gnomef = '/gnome-flashback'
|
src_gnomef = '/gnome-flashback'
|
||||||
des_gnomef = '/etc/skel/.config'
|
des_gnomef = '/etc/skel/.config'
|
||||||
|
|
Loading…
Reference in New Issue