Corrected Issues found by Manuel
- Took out the Desktopbase - Added in the Peppermint repos - Took Plank out of auto start. Cavy wanted planl to ship with the XFCE but not auto start Signed-off-by: debianpepper <pdpdebdevuan@protonmail.com>
This commit is contained in:
parent
d733723653
commit
3d542c85d5
|
@ -0,0 +1,2 @@
|
||||||
|
deb http://repo.peppermintos.com/packages peppermint main contrib non-free
|
||||||
|
deb-src http://repo.peppermintos.com/packages peppermint main contrib non-free
|
|
@ -99,7 +99,7 @@ xfce_list = ('xfce4\n'
|
||||||
'plank\n'
|
'plank\n'
|
||||||
'mugshot\n'
|
'mugshot\n'
|
||||||
'menulibre\n'
|
'menulibre\n'
|
||||||
#'marwaita-for-xfwm'
|
'marwaita-for-xfwm'
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -24,17 +24,6 @@ BOOTSTRAP = "/fusato/config/includes.bootstrap"
|
||||||
FUSATOCONFIG = "/fusato/config"
|
FUSATOCONFIG = "/fusato/config"
|
||||||
term_size = os.get_terminal_size()
|
term_size = os.get_terminal_size()
|
||||||
|
|
||||||
class Processing(list):
|
|
||||||
def __enter__(self):
|
|
||||||
self._stdout = sys.stdout
|
|
||||||
sys.stdout = self._stringio = StringIO()
|
|
||||||
return self
|
|
||||||
def __exit__(self, *args):
|
|
||||||
self.extend(self._stringio.getvalue().splitlines())
|
|
||||||
del self._stringio # free up some memory
|
|
||||||
sys.stdout = self._stdout
|
|
||||||
|
|
||||||
|
|
||||||
class ChrootFolders:
|
class ChrootFolders:
|
||||||
"""
|
"""
|
||||||
Copy all the needed folders to CHROOT Depending on
|
Copy all the needed folders to CHROOT Depending on
|
||||||
|
@ -210,12 +199,7 @@ def shared_folders():
|
||||||
'/pmostools',
|
'/pmostools',
|
||||||
'/autostart',
|
'/autostart',
|
||||||
'/pylibraries',
|
'/pylibraries',
|
||||||
'/desktop_base/lines-theme/grub',
|
'/calamares_settings/branding'
|
||||||
'/desktop_base/lines-theme/lockscreen',
|
|
||||||
'/desktop_base/lines-theme/login',
|
|
||||||
'/desktop_base/lines-theme/wallpaper',
|
|
||||||
'/calamares_settings/branding'
|
|
||||||
|
|
||||||
)
|
)
|
||||||
des_paths =('/usr/share/plymouth/themes/lines',
|
des_paths =('/usr/share/plymouth/themes/lines',
|
||||||
'/usr/share/applications',
|
'/usr/share/applications',
|
||||||
|
@ -234,10 +218,6 @@ def shared_folders():
|
||||||
'/etc/skel/.local/share/pmostools',
|
'/etc/skel/.local/share/pmostools',
|
||||||
'/etc/skel/.config/autostart',
|
'/etc/skel/.config/autostart',
|
||||||
'/usr/lib/python3/dist-packages',
|
'/usr/lib/python3/dist-packages',
|
||||||
'/usr/share/desktop-base/lines-theme/grub',
|
|
||||||
'/usr/share/desktop-base/lines-theme/lockscreen',
|
|
||||||
'/usr/share/desktop-base/lines-theme/login',
|
|
||||||
'/usr/share/desktop-base/lines-theme/wallpaper',
|
|
||||||
'/etc/calamares/branding'
|
'/etc/calamares/branding'
|
||||||
)
|
)
|
||||||
src_q = collections.deque(src_paths)
|
src_q = collections.deque(src_paths)
|
||||||
|
@ -317,6 +297,7 @@ def shared_files():
|
||||||
print("Copy Shared Files")
|
print("Copy Shared Files")
|
||||||
print('=' * term_size.columns)
|
print('=' * term_size.columns)
|
||||||
src_paths = ('/aliases/bash_aliases',
|
src_paths = ('/aliases/bash_aliases',
|
||||||
|
'/sources/peppermint.list',
|
||||||
'/PepProTools/xDaily',
|
'/PepProTools/xDaily',
|
||||||
'/PepProTools/hub',
|
'/PepProTools/hub',
|
||||||
'/PepProTools/welcome',
|
'/PepProTools/welcome',
|
||||||
|
@ -324,9 +305,10 @@ def shared_files():
|
||||||
'/lightdm/lightdm.conf',
|
'/lightdm/lightdm.conf',
|
||||||
'/lightdm/lightdm-gtk-greeter.conf',
|
'/lightdm/lightdm-gtk-greeter.conf',
|
||||||
'/plymouth/plymouthd.conf',
|
'/plymouth/plymouthd.conf',
|
||||||
'/application/plank.desktop'
|
|
||||||
)
|
)
|
||||||
des_paths = ('/etc/skel/.bash_aliases',
|
des_paths = ('/etc/skel/.bash_aliases',
|
||||||
|
'/etc/apt/sources.list.d',
|
||||||
'/usr/local/bin/xDaily',
|
'/usr/local/bin/xDaily',
|
||||||
'/usr/local/bin/hub',
|
'/usr/local/bin/hub',
|
||||||
'/usr/local/bin/welcome',
|
'/usr/local/bin/welcome',
|
||||||
|
@ -334,7 +316,7 @@ def shared_files():
|
||||||
'/etc/lightdm/lightdm.conf',
|
'/etc/lightdm/lightdm.conf',
|
||||||
'/etc/lightdm/lightdm-gtk-greeter.conf',
|
'/etc/lightdm/lightdm-gtk-greeter.conf',
|
||||||
'/usr/share/plymouthd.conf',
|
'/usr/share/plymouthd.conf',
|
||||||
'/etc/skel/.config/autostart/plank.desktop',
|
|
||||||
)
|
)
|
||||||
# copy files to thier CHROOT Location
|
# copy files to thier CHROOT Location
|
||||||
src_q = collections.deque(src_paths)
|
src_q = collections.deque(src_paths)
|
||||||
|
|
Loading…
Reference in New Issue