Fix installation script, change tittle

This commit is contained in:
Aleksey Samoilov 2023-07-17 22:23:25 +04:00
parent 1da53185f7
commit 89ff1cc5f3
5 changed files with 17 additions and 5 deletions

View file

@ -40,7 +40,7 @@ Presentation
Text {
anchors.horizontalCenter: background1.horizontalCenter
anchors.top: background1.bottom
text: qsTr("Welcome to Debian GNU/Linux.<br/>"+
text: qsTr("Welcome to TileOS 1.0 T-Rex.<br/>"+
"The rest of the installation is automated and should complete in a few minutes.")
wrapMode: Text.WordWrap
width: 600

Binary file not shown.

Before

Width:  |  Height:  |  Size: 61 KiB

After

Width:  |  Height:  |  Size: 15 KiB

View file

@ -164,6 +164,7 @@
packages:
- alacritty
- aqemu
- corectrl
- cpu-x
- distrobox
- drm-info
@ -178,6 +179,7 @@
- mate-terminal
- opensnitch
- qemu-system
- radeontop
- sakura
- system-config-printer
- terminator

3
debian/files vendored
View file

@ -1,2 +1 @@
calamares-settings-tileos-sway_1.5~tileos_all.deb utils optional
calamares-settings-tileos-sway_1.5~tileos_amd64.buildinfo utils optional
calamares-settings-tileos-sway_1.7~tileos_source.buildinfo utils optional

View file

@ -1,4 +1,15 @@
#!/bin/sh
###
# Wrapper for running calamares on Debian live media
###
# Set GTK2 Qt plugin for Calamares. This fixes styling issues with dark Qt theme
QT_QPA_PLATFORMTHEME=gtk2 sudo -E calamares -d
# Stale file left behind by live-build that messes with partitioning
sudo mv /etc/fstab /etc/fstab.orig.calamares
# Access control to run calamares as root for xwayland
xhost +si:localuser:root
pkexec calamares -d -style Fusion
xhost -si:localuser:root
# Restore stale fstab, for what it's worth
sudo mv /etc/fstab.orig.calamares /etc/fstab