 post_install() {
    # Edit files
        echo "LABEL=BOOT_MNJRO  /boot   vfat    defaults        0       0" >> /etc/fstab

	# Edit mkinitcpio.conf
	echo "Editing mkinitcpio.conf..."
	sed -i s/"HOOKS=(base udev autodetect modconf block filesystems keyboard fsck)"/"HOOKS=(base udev plymouth autodetect modconf block filesystems keyboard fsck)"/g /etc/mkinitcpio.conf
		sed -i s/"MODULES=()"/"MODULES=(meson_drm meson_dw_hdmi display_connector)"/g /etc/mkinitcpio.conf
    	# Set Plymouth Manjaro theme
        if [ -f /usr/bin/plymouth-set-default-theme ] && [ -d /usr/share/plymouth/themes/materia-manjaro ]; then
        plymouth-set-default-theme -R materia-manjaro
        fi

    # Enable services
        systemctl enable sound.service
}
