Fix installation script, change tittle
This commit is contained in:
parent
1da53185f7
commit
89ff1cc5f3
5 changed files with 17 additions and 5 deletions
|
@ -40,7 +40,7 @@ Presentation
|
||||||
Text {
|
Text {
|
||||||
anchors.horizontalCenter: background1.horizontalCenter
|
anchors.horizontalCenter: background1.horizontalCenter
|
||||||
anchors.top: background1.bottom
|
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.")
|
"The rest of the installation is automated and should complete in a few minutes.")
|
||||||
wrapMode: Text.WordWrap
|
wrapMode: Text.WordWrap
|
||||||
width: 600
|
width: 600
|
||||||
|
|
Binary file not shown.
Before Width: | Height: | Size: 61 KiB After Width: | Height: | Size: 15 KiB |
|
@ -164,6 +164,7 @@
|
||||||
packages:
|
packages:
|
||||||
- alacritty
|
- alacritty
|
||||||
- aqemu
|
- aqemu
|
||||||
|
- corectrl
|
||||||
- cpu-x
|
- cpu-x
|
||||||
- distrobox
|
- distrobox
|
||||||
- drm-info
|
- drm-info
|
||||||
|
@ -178,6 +179,7 @@
|
||||||
- mate-terminal
|
- mate-terminal
|
||||||
- opensnitch
|
- opensnitch
|
||||||
- qemu-system
|
- qemu-system
|
||||||
|
- radeontop
|
||||||
- sakura
|
- sakura
|
||||||
- system-config-printer
|
- system-config-printer
|
||||||
- terminator
|
- terminator
|
||||||
|
|
3
debian/files
vendored
3
debian/files
vendored
|
@ -1,2 +1 @@
|
||||||
calamares-settings-tileos-sway_1.5~tileos_all.deb utils optional
|
calamares-settings-tileos-sway_1.7~tileos_source.buildinfo utils optional
|
||||||
calamares-settings-tileos-sway_1.5~tileos_amd64.buildinfo utils optional
|
|
||||||
|
|
|
@ -1,4 +1,15 @@
|
||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
|
###
|
||||||
|
# Wrapper for running calamares on Debian live media
|
||||||
|
###
|
||||||
|
|
||||||
# Set GTK2 Qt plugin for Calamares. This fixes styling issues with dark Qt theme
|
# Stale file left behind by live-build that messes with partitioning
|
||||||
QT_QPA_PLATFORMTHEME=gtk2 sudo -E calamares -d
|
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
|
||||||
|
|
Loading…
Add table
Reference in a new issue