Skip to content
This repository has been archived by the owner on Aug 7, 2023. It is now read-only.

Commit

Permalink
Fully add trinity support
Browse files Browse the repository at this point in the history
  • Loading branch information
Rippanda12 committed Dec 6, 2022
1 parent 4c0af76 commit e03ad5d
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 2 deletions.
1 change: 1 addition & 0 deletions etc/calamares/modules/displaymanager.conf
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ displaymanagers:
- mdm
- lxdm
- kdm
- tdm

basicSetup: false
sysconfigSetup: false
2 changes: 1 addition & 1 deletion etc/calamares/modules/packages_offline.conf
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
operations:
- try_remove:
- rebornos-iso-welcome

- rebornos-iso-welcome-rpi

skip_if_no_internet: false
update_db: false
Expand Down
1 change: 1 addition & 0 deletions etc/calamares/modules/packages_online.conf
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
operations:
- try_remove:
- rebornos-iso-welcome
- rebornos-iso-welcome-rpi

skip_if_no_internet: false
update_db: true
Expand Down
4 changes: 4 additions & 0 deletions etc/calamares/post_install/pre_post_install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,15 @@ else
rm /etc/systemd/system/display-manager.service || true
#try to enable common display managers but dont crash if they are not installed
systemctl enable lightdm.service || true
systemctl enable tdm.service || true
systemctl enable gdm.service || true
systemctl enable lxdm.service || true
systemctl enable slim.service || true
systemctl enable mdm.service || true
systemctl enable sddm.service || true
if [ -f /opt/trinity/bin/tdm ] ; then
{ echo "MaxShowUID=65000"; echo "MinShowUID=1000"; echo "ShowUsers=NotHidden"; } >> /opt/trinity/config/tdm/tdmrc
fi
echo "Removinging LXQt..."
pacman -Rncsu --noconfirm rebornos-cosmic-lxqt

Expand Down
2 changes: 1 addition & 1 deletion packaging/calamares-configuration/PKGBUILD
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ makedepends=()
source=("https://github.com/RebornOS-Developers/calamares-configuration-rpi/archive/refs/tags/v${pkgver}.tar.gz")

package() {
PROJECT_DIRECTORY="${srcdir}/calamares-configuration-${pkgver}"
PROJECT_DIRECTORY="${srcdir}/calamares-configuration-rpi-${pkgver}"
# RESOURCE_DIRECTORY="$PROJECT_DIRECTORY/packaging/resources"
# BUILD_DIRECTORY="$PROJECT_DIRECTORY/build"
# NUMBER_OF_PROCESSORS="$(nproc)"
Expand Down

0 comments on commit e03ad5d

Please sign in to comment.