configuration de Calamares
@ -0,0 +1,226 @@
|
||||
/* === This file is part of Calamares - <http://github.com/calamares> ===
|
||||
*
|
||||
* Copyright 2015, Teo Mrnjavac <teo@kde.org>
|
||||
* Copyright 2018, Jonathan Carter <jcc@debian.org>
|
||||
*
|
||||
* Calamares is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
* the Free Software Foundation, or (at your option) any later version.
|
||||
*
|
||||
* Calamares is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
* GNU General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License
|
||||
* along with Calamares. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
import QtQuick 2.0;
|
||||
import calamares.slideshow 1.0;
|
||||
|
||||
Presentation
|
||||
{
|
||||
id: presentation
|
||||
|
||||
Timer {
|
||||
interval: 20000
|
||||
running: true
|
||||
repeat: true
|
||||
onTriggered: presentation.goToNextSlide()
|
||||
}
|
||||
|
||||
Slide {
|
||||
Image {
|
||||
id: background1
|
||||
source: "slide1.png"
|
||||
width: 600; height: 360
|
||||
fillMode: Image.PreserveAspectFit
|
||||
anchors.centerIn: parent
|
||||
anchors.verticalCenterOffset: -40
|
||||
}
|
||||
Text {
|
||||
anchors.horizontalCenter: background1.horizontalCenter
|
||||
anchors.top: background1.bottom
|
||||
text: qsTr("Bienvenue sur Debian !<br/>"+
|
||||
"Debian 11 va maintenant s'installer sur votre ordinateur.")
|
||||
wrapMode: Text.WordWrap
|
||||
width: 600
|
||||
horizontalAlignment: Text.Center
|
||||
}
|
||||
}
|
||||
|
||||
Slide {
|
||||
|
||||
Image {
|
||||
id: background2
|
||||
source: "slide2.png"
|
||||
width: 600; height: 360
|
||||
fillMode: Image.PreserveAspectFit
|
||||
anchors.centerIn: parent
|
||||
anchors.verticalCenterOffset: -40
|
||||
}
|
||||
Text {
|
||||
anchors.horizontalCenter: background2.horizontalCenter
|
||||
anchors.top: background2.bottom
|
||||
anchors.topMargin: 15
|
||||
text: qsTr("Debian, le système d'exploitation universel<br/>"+
|
||||
"Debian GNU/Linux est un système d'exploitation Libre, notamment réputé pour sa stabilité.")
|
||||
wrapMode: Text.WordWrap
|
||||
width: 600
|
||||
horizontalAlignment: Text.Center
|
||||
}
|
||||
}
|
||||
|
||||
Slide {
|
||||
|
||||
Image {
|
||||
id: background3
|
||||
source: "slide3.png"
|
||||
width: 600; height: 360
|
||||
fillMode: Image.PreserveAspectFit
|
||||
anchors.centerIn: parent
|
||||
anchors.verticalCenterOffset: -40
|
||||
}
|
||||
Text {
|
||||
anchors.horizontalCenter: background3.horizontalCenter
|
||||
anchors.top: background3.bottom
|
||||
anchors.topMargin: 15
|
||||
text: qsTr("Debian-Facile, une communauté francophone<br/>"+
|
||||
"L'association Debian-Facile permet l'entraide entre utilisateurs de Debian<br/>"+
|
||||
"Besoin d'aide ? Rendez-vous sur https://debian-facile.org !")
|
||||
wrapMode: Text.WordWrap
|
||||
width: 600
|
||||
horizontalAlignment: Text.Center
|
||||
}
|
||||
}
|
||||
|
||||
Slide {
|
||||
|
||||
Image {
|
||||
id: background4
|
||||
source: "slide4.png"
|
||||
width: 600; height: 360
|
||||
fillMode: Image.PreserveAspectFit
|
||||
anchors.centerIn: parent
|
||||
anchors.verticalCenterOffset: -40
|
||||
}
|
||||
Text {
|
||||
anchors.horizontalCenter: background4.horizontalCenter
|
||||
anchors.top: background4.bottom
|
||||
anchors.topMargin: 15
|
||||
text: qsTr("Le système que vous installez a été pré-configuré pour les débutant-e-s par la communauté Debian-Facile<br/>"+
|
||||
"Découvrons votre nouveau système...")
|
||||
wrapMode: Text.WordWrap
|
||||
width: 600
|
||||
horizontalAlignment: Text.Center
|
||||
}
|
||||
}
|
||||
|
||||
Slide {
|
||||
|
||||
Image {
|
||||
id: background5
|
||||
source: "slide5.png"
|
||||
width: 600; height: 360
|
||||
fillMode: Image.PreserveAspectFit
|
||||
anchors.centerIn: parent
|
||||
anchors.verticalCenterOffset: -40
|
||||
}
|
||||
Text {
|
||||
anchors.horizontalCenter: background5.horizontalCenter
|
||||
anchors.top: background5.bottom
|
||||
anchors.topMargin: 15
|
||||
text: qsTr("HandyMenu, votre menu simplifié<br/>"+
|
||||
"L'icône HandyMenu sur votre bureau ouvre un menu simplifié, idéal pour grands débutants et séniors.")
|
||||
width: 600
|
||||
horizontalAlignment: Text.Center
|
||||
}
|
||||
}
|
||||
|
||||
Slide {
|
||||
|
||||
Image {
|
||||
id: background6
|
||||
source: "slide6.png"
|
||||
width: 600; height: 360
|
||||
fillMode: Image.PreserveAspectFit
|
||||
anchors.centerIn: parent
|
||||
anchors.verticalCenterOffset: -40
|
||||
}
|
||||
Text {
|
||||
anchors.horizontalCenter: background6.horizontalCenter
|
||||
anchors.top: background6.bottom
|
||||
anchors.topMargin: 15
|
||||
text: qsTr("Firefox, pour surfer sur le web<br/>"+
|
||||
"Thunderbird, pour lire et écrire vos e-mails")
|
||||
width: 600
|
||||
horizontalAlignment: Text.Center
|
||||
}
|
||||
}
|
||||
|
||||
Slide {
|
||||
|
||||
Image {
|
||||
id: background7
|
||||
source: "slide7.png"
|
||||
width: 600; height: 360
|
||||
fillMode: Image.PreserveAspectFit
|
||||
anchors.centerIn: parent
|
||||
anchors.verticalCenterOffset: -40
|
||||
}
|
||||
Text {
|
||||
anchors.horizontalCenter: background7.horizontalCenter
|
||||
anchors.top: background7.bottom
|
||||
anchors.topMargin: 15
|
||||
text: qsTr("La suite complète LibreOffice<br/>"+
|
||||
"Un traitement de texte (Writer), un tableur (Calc), un éditeur de diaporamas (Impress),<br/>mais aussi des logiciels de dessin (Draw), de mathématiques (Math) et une base de données (Base)")
|
||||
width: 600
|
||||
horizontalAlignment: Text.Center
|
||||
}
|
||||
}
|
||||
|
||||
Slide {
|
||||
|
||||
Image {
|
||||
id: background8
|
||||
source: "slide8.png"
|
||||
width: 600; height: 360
|
||||
fillMode: Image.PreserveAspectFit
|
||||
anchors.centerIn: parent
|
||||
anchors.verticalCenterOffset: -40
|
||||
}
|
||||
Text {
|
||||
anchors.horizontalCenter: background8.horizontalCenter
|
||||
anchors.top: background8.bottom
|
||||
anchors.topMargin: 15
|
||||
text: qsTr("De nombreuses applications multimédia<br/>"+
|
||||
"VLC pour lire vos films et fichiers audio, Quod Libet pour lire et parcourir votre musique,<br/>Asunder pour extraire vos CD audio, Xfburn pour graver des disques...")
|
||||
width: 600
|
||||
horizontalAlignment: Text.Center
|
||||
}
|
||||
}
|
||||
|
||||
Slide {
|
||||
|
||||
Image {
|
||||
id: background9
|
||||
source: "slide9.png"
|
||||
width: 600; height: 360
|
||||
fillMode: Image.PreserveAspectFit
|
||||
anchors.centerIn: parent
|
||||
anchors.verticalCenterOffset: -40
|
||||
}
|
||||
Text {
|
||||
anchors.horizontalCenter: background9.horizontalCenter
|
||||
anchors.top: background9.bottom
|
||||
anchors.topMargin: 15
|
||||
text: qsTr("Un menu d'aide, pour accéder à la documentation<br/>"+
|
||||
"Manuel utilisateur : notice de prise en main de votre système<br/>"+
|
||||
"Les cahiers du débutant : un manuel pour tout savoir sur Debian !")
|
||||
width: 600
|
||||
horizontalAlignment: Text.Center
|
||||
}
|
||||
}
|
||||
}
|
||||
|
After Width: | Height: | Size: 35 KiB |
After Width: | Height: | Size: 72 KiB |
After Width: | Height: | Size: 112 KiB |
After Width: | Height: | Size: 66 KiB |
After Width: | Height: | Size: 50 KiB |
After Width: | Height: | Size: 47 KiB |
After Width: | Height: | Size: 85 KiB |
After Width: | Height: | Size: 111 KiB |
After Width: | Height: | Size: 87 KiB |
After Width: | Height: | Size: 32 KiB |
@ -0,0 +1,23 @@
|
||||
# Configure one or more display managers (e.g. SDDM)
|
||||
# with a "best effort" approach.
|
||||
---
|
||||
#The DM module attempts to set up all the DMs found in this list, in that precise order.
|
||||
#It also sets up autologin, if the feature is enabled in globalstorage.
|
||||
#The displaymanagers list can also be set in globalstorage, and in that case it overrides anything set up here.
|
||||
displaymanagers:
|
||||
- lightdm
|
||||
|
||||
|
||||
#Enable the following settings to force a desktop environment in your displaymanager configuration file:
|
||||
#defaultDesktopEnvironment:
|
||||
# executable: "startkde"
|
||||
# desktopFile: "plasma"
|
||||
|
||||
#If true, try to ensure that the user, group, /var directory etc. for the
|
||||
#display manager are set up correctly. This is normally done by the distribution
|
||||
#packages, and best left to them. Therefore, it is disabled by default.
|
||||
basicSetup: false
|
||||
|
||||
#If true, setup autologin for openSUSE. This only makes sense on openSUSE
|
||||
#derivatives or other systems where /etc/sysconfig/displaymanager exists.
|
||||
sysconfigSetup: false
|
@ -0,0 +1,2 @@
|
||||
region: Europe
|
||||
zone: Paris
|