264 lines
10 KiB
Python
264 lines
10 KiB
Python
"""
|
|
* Author: "PeppermintOS Team(peppermintosteam@proton.me)
|
|
*
|
|
* License: SPDX-License-Identifier: GPL-3.0-or-later
|
|
*
|
|
* This hook is the central one used for all the builds
|
|
* Add things as needed
|
|
"""
|
|
import os
|
|
import platform
|
|
|
|
|
|
def apt_install_packages():
|
|
"""
|
|
The place where installing apt packaged is preffered during the
|
|
hook run ran ther then the general build
|
|
"""
|
|
os.system('apt update')
|
|
os.system('apt install --yes peppermint-wallpapers')
|
|
|
|
|
|
def remove_packages_from_the_build():
|
|
"""
|
|
Uninstall unwanted packages from the build
|
|
"""
|
|
packages = [
|
|
'konsole',
|
|
'malcontent',
|
|
'systemsettings',
|
|
'nvidia*',
|
|
'imagemagick*'
|
|
]
|
|
|
|
for package in packages:
|
|
os.system(f'apt --purge --yes autoremove {package}')
|
|
|
|
|
|
|
|
def install_min_browser():
|
|
"""
|
|
This minimum browser is used for kumo this will download
|
|
the .deb install stall the package, then remove the unneeded
|
|
files. 64bit only
|
|
"""
|
|
url = (
|
|
"https://github.com/minbrowser/min/releases/download/"
|
|
"v1.32.1/min-1.32.1-amd64.deb"
|
|
)
|
|
destination = "/opt"
|
|
wget_command = f"wget -P {destination} {url}"
|
|
os.system(wget_command)
|
|
os.system('dpkg -i /opt/min-1.32.1-amd64.deb')
|
|
os.system('apt-get install -f')
|
|
os.system('rm /usr/share/applications/min.desktop')
|
|
os.system('rm /opt/min-1.32.1-amd64.deb')
|
|
|
|
|
|
def setup_plymouth_theme_grub():
|
|
"""
|
|
Set the plymouth boot theme and desktop theme, as well as grub
|
|
"""
|
|
os.system('plymouth-set-default-theme -R joy')
|
|
os.system('rm -f /etc/alternatives/desktop-theme')
|
|
os.system('rm -f /etc/alternatives/desktop-grub')
|
|
|
|
theme_source = "/usr/share/desktop-base/joy-theme"
|
|
theme_destination = "/etc/alternatives/desktop-theme"
|
|
theme_command = f"ln -s {theme_source} {theme_destination}"
|
|
os.system(theme_command)
|
|
|
|
grub_source = (
|
|
"/usr/share/desktop-base/active-theme/grub/"
|
|
"pep-grub-16x9.png"
|
|
)
|
|
grub_destination = "/etc/alternatives/desktop-grub"
|
|
grub_command = f"ln -s {grub_source} {grub_destination}"
|
|
os.system(grub_command)
|
|
|
|
|
|
def hblock_setup():
|
|
"""
|
|
Install hblock to the system
|
|
"""
|
|
hb_url = "https://raw.githubusercontent.com/hectorm/hblock/master/hblock"
|
|
hb_output = "/tmp/hblock"
|
|
hb_command = f"curl {hb_url} --output {hb_output}"
|
|
os.system(hb_command)
|
|
file_path = "/tmp/hblock"
|
|
expected_hash = "4031d86cd04fd7c6cb1b7e9acb1ffdbe9a3f84f693bfb287c68e1f1fa2c14c3b"
|
|
sh_command = f'[ "$(sha256sum {file_path})" == "{expected_hash}" ]'
|
|
os.system(sh_command)
|
|
os.system('mv /tmp/hblock /usr/local/bin/hblock')
|
|
os.system('chown 0:0 /usr/local/bin/hblock')
|
|
os.system('chmod 755 /usr/local/bin/hblock')
|
|
os.system('hblock -S none -D none exit 0')
|
|
|
|
## this function may not be necessary because the bug is already fixed in live-build.
|
|
def manage_raspi_firmware():
|
|
"""
|
|
Manage when the raspi firmware, is removed.
|
|
"""
|
|
if os.path.exists("/usr/share/peppermint/pep_id"):
|
|
os.system("apt remove raspi-firmware -y")
|
|
os.system("apt purge raspi-firmware -y")
|
|
os.system("apt autoremove -y")
|
|
else:
|
|
print("not there")
|
|
|
|
|
|
def manage_symlinks():
|
|
"""
|
|
Symlink management
|
|
"""
|
|
# Workaround for using snapd on debian. Thank You - @stevesveryown.
|
|
os.system('[ ! -e /etc/skel/.local/share ] && mkdir -p /etc/skel/.local/share')
|
|
os.system('ln -s snap /usr/bin/snap-store')
|
|
# These are for the 3 installer scripts - icons.sh, themes.sh & walls.sh
|
|
# In 0610- we set the permissions to 777 on the DIRECTORY, not the contents.
|
|
os.system('ln -s icons /usr/share/pepicons')
|
|
os.system('ln -s themes /usr/share/pepthemes')
|
|
os.system('ln -s backgrounds /usr/share/pepwallpaper')
|
|
|
|
|
|
def set_vi_vim():
|
|
"""
|
|
Setting the better version of vim
|
|
"""
|
|
# A better version of vi and vim than vim-tiny
|
|
os.system('rm /etc/alternatives/vi')
|
|
os.system('ln -s ../../etc/alternatives/vim /usr/bin/vim')
|
|
os.system('ln -s ../../usr/bin/vim.tiny /etc/alternatives/vim')
|
|
os.system('ln -s ../../usr/bin/busybox /etc/alternatives/vi')
|
|
|
|
|
|
def setting_permissions():
|
|
"""
|
|
This allows write access to the Welcome Screen database to users
|
|
in the "cdrom" group. IF this a system wide file, one user can
|
|
disable or turn it off for *ALL* accounts. If this is meant to be
|
|
on a per user basis, put the .db in ${HOME}/.config . Or rewrite
|
|
welcome.py to write to the .db WHICH user requested to disable
|
|
this feature. Set Permissions on desktop files
|
|
"""
|
|
# Desktop links
|
|
os.system('chmod 755 /usr/share/applications/Welcome.desktop')
|
|
os.system('chmod 755 /usr/share/applications/plank.desktop')
|
|
os.system('chmod 755 /usr/share/applications/kumo.desktop')
|
|
os.system('chmod 755 /usr/share/applications/calamares-install-peppermint.desktop')
|
|
# Executables
|
|
os.system('chmod 755 /usr/local/bin/xDaily')
|
|
os.system('chmod 755 /usr/local/bin/kumo')
|
|
os.system('chmod 755 /usr/local/bin/welcome')
|
|
os.system('chmod 755 /usr/bin/install-peppermint')
|
|
# Set permissions on the Python libs
|
|
os.system('chmod 755 -R /usr/lib/python3/dist-packages/tendo')
|
|
os.system('chmod 755 -R /usr/lib/python3/dist-packages/tendo-0.3.0.dist-info')
|
|
os.system('chmod 755 -R /usr/lib/python3/dist-packages/ttkbootstrap')
|
|
os.system('chmod 755 -R /usr/lib/python3/dist-packages/ttkbootstrap-1.10.1.dist-info')
|
|
os.system('chmod 755 -R /usr/lib/python3/dist-packages/ttkcreator')
|
|
# Set permissions on the lines theme
|
|
os.system('chmod 755 -R /usr/share/desktop-base/lines-theme')
|
|
# Set Grub Themes Permission
|
|
os.system('chmod 755 -R /boot/grub/themes')
|
|
# Set the Calamares Permissions]
|
|
os.system('chmod 755 -R /etc/calamares')
|
|
### After installation, additional groups to add new users to.
|
|
os.system('grep -B99 "#EXTRA_GROUPS=" /etc/adduser.conf' +
|
|
'> /etc/adduser.conf.new')
|
|
os.system('grep "#EXTRA_GROUPS=" /etc/adduser.conf' +
|
|
' | cut -c2-' +
|
|
'>> /etc/adduser.conf.new'
|
|
)
|
|
os.system('grep -B3 "#ADD_EXTRA_GROUPS=" /etc/adduser.conf >> /etc/adduser.conf.new')
|
|
os.system('grep "#ADD_EXTRA_GROUPS=" /etc/adduser.conf | cut -c2- >> /etc/adduser.conf.new')
|
|
os.system('grep -B3 "#NAME_REGEX=" /etc/adduser.conf >> /etc/adduser.conf.new')
|
|
# These are for the 3 installer scripts - icons.sh, themes.sh & walls.sh
|
|
# In 0600- we created symlinks to these directories. This makes them writable.
|
|
os.system('chmod 755 -R /usr/share/icons')
|
|
os.system('chmod 755 -R /usr/share/themes')
|
|
os.system('chmod 755 -R /usr/share/backgrounds')
|
|
os.system('chmod 755 -R /usr/share/pixmaps')
|
|
|
|
|
|
def final_cleanup():
|
|
"""
|
|
This section is the "lint-trap" to remove files and/or
|
|
directories not associated with or required by PepOS.
|
|
Followed by "\" , add files to be removed, one per line.
|
|
"""
|
|
files_to_remove = [ "/usr/bin/install-debian",
|
|
"/usr/share/applications/min.desktop",
|
|
"/usr/share/applications/calamares-install-debian.desktop"
|
|
]
|
|
for file_path in files_to_remove:
|
|
if os.path.exists(file_path):
|
|
os.system(f"rm -rf {file_path}")
|
|
print(f" Removed: {file_path}")
|
|
else:
|
|
print(f" The path {file_path} was not found and couldn't be removed.")
|
|
### This might be better in an OS-tweaks hook script.
|
|
# Lowers the footprint in RAM by 200 MB at the small expense of added size to the ISO.
|
|
os.system('update-icon-caches /usr/share/icons/*')
|
|
### Setting --apt-recommends and --apt-suggests defaults to '0'
|
|
#os.system('echo -e "# Changing these values to \"1\" may quickly fill up a small partition" > /etc/apt/apt.conf.d/99No-Recommends')
|
|
#os.system('echo -e "# Changing these values to \\"1\\" may quickly fill up a small partition" > /etc/apt/apt.conf.d/99No-Recommends')
|
|
#os.system('echo -e "APT::Install-Recommends \"0\";\nAPT::Install-Suggests \"0\";" >> /etc/apt/apt.conf.d/99No-Recommends')
|
|
#os.system('echo -e "APT::Install-Recommends \\"0\\";\nAPT::Install-Suggests \\"0\\";" >> /etc/apt/apt.conf.d/99No-Recommends')
|
|
### Fixes the "Not installing grub for UEFI Secure Boot" in all versions , after the default was changed.
|
|
#sed s/keyutils/"keyutils --install-recommends"/ /usr/sbin/bootloader-config > /tmp/bootloader-config
|
|
os.system('echo -e "$(grep -A1 -B20 "Installing grub-efi (uefi)..." /usr/sbin/bootloader-config) --install-recommends" > /tmp/bootloader-config')
|
|
os.system('echo -e "$(grep -A2 "else" /usr/sbin/bootloader-config) --install-recommends\nfi" >> /tmp/bootloader-config')
|
|
os.system('chmod +x /tmp/bootloader-config && mv /tmp/bootloader-config /usr/sbin/bootloader-confi')
|
|
|
|
|
|
def rename_kernel():
|
|
"""
|
|
These commands are typically used in the context of updating the
|
|
initial ramdisk image and the kernel image for a live Linux system.
|
|
The steps can be summarized as follows:
|
|
Removal of the current boot files: initrd.img and vmlinuz are
|
|
removed to clear out the old versions.
|
|
Copying the updated versions: New versions of these files,
|
|
which match the patterns initrd.img-* and vmlinuz-*, are copied
|
|
to the standard names initrd.img and vmlinuz.
|
|
"""
|
|
os.system('rm live/initrd.img')
|
|
os.system('rm live/vmlinuz')
|
|
os.system('cp live/initrd.img-* live/initrd.img')
|
|
os.system('cp live/vmlinuz-* live/vmlinuz')
|
|
|
|
|
|
def start():
|
|
""" This will begin the execution process of the hooks
|
|
First see what arch is being ran and run the correct
|
|
functions
|
|
"""
|
|
architecture = platform.architecture()[0]
|
|
if '64bit' in architecture:
|
|
apt_install_packages()
|
|
remove_packages_from_the_build()
|
|
install_min_browser()
|
|
setup_plymouth_theme_grub()
|
|
hblock_setup()
|
|
manage_raspi_firmware()
|
|
manage_symlinks()
|
|
set_vi_vim()
|
|
setting_permissions()
|
|
final_cleanup()
|
|
rename_kernel()
|
|
else:
|
|
apt_install_packages()
|
|
remove_packages_from_the_build()
|
|
setup_plymouth_theme_grub()
|
|
hblock_setup()
|
|
manage_raspi_firmware()
|
|
manage_symlinks()
|
|
set_vi_vim()
|
|
setting_permissions()
|
|
final_cleanup()
|
|
rename_kernel()
|
|
|
|
|
|
start()
|