diff options
author | wiktor w brodlo <wiktor@brodlo.net> | 2011-07-20 23:05:16 +0000 |
---|---|---|
committer | wiktor w brodlo <wiktor@brodlo.net> | 2011-07-20 23:05:16 +0000 |
commit | 85e73f36faa73e619f2a5ef7b453f0332d353c55 (patch) | |
tree | 0f43ae8145ddfb491e0fd114fce3de08c3a279de | |
parent | Configuring the Bootloader welcome screen (diff) | |
download | anaconda-85e73f36faa73e619f2a5ef7b453f0332d353c55.tar.gz anaconda-85e73f36faa73e619f2a5ef7b453f0332d353c55.tar.bz2 anaconda-85e73f36faa73e619f2a5ef7b453f0332d353c55.zip |
Finalizing your Gentoo Installation welcome screen
-rw-r--r-- | dispatch.py | 1 | ||||
-rwxr-xr-x | gui.py | 1 | ||||
-rw-r--r-- | installclass.py | 1 | ||||
-rw-r--r-- | iw/welcome_gui.py | 9 |
4 files changed, 12 insertions, 0 deletions
diff --git a/dispatch.py b/dispatch.py index eb1f1c3..fedd25b 100644 --- a/dispatch.py +++ b/dispatch.py @@ -125,6 +125,7 @@ installSteps = [ ("bootloader", ), # Finalizing your Gentoo Installation + ("finalizing", finalizing, ), ("useraccounts", ), ("xorg", ), @@ -107,6 +107,7 @@ stepToClass = { "upgbootloader": ("upgrade_bootloader_gui", "UpgradeBootloaderWindow"), # Finalizing your Gentoo Installation + "finalizing" : ("welcome_gui", "WelcomeWindow"), "useraccounts" : ("user_gui", "AccountWindow"), "xorg" : ("xorg_gui", "XorgWindow"), diff --git a/installclass.py b/installclass.py index e779276..b3a6991 100644 --- a/installclass.py +++ b/installclass.py @@ -131,6 +131,7 @@ class BaseInstallClass(object): "bootloader", # Finalizing your Gentoo Installation + "finalizing", "useraccounts", "xorg", diff --git a/iw/welcome_gui.py b/iw/welcome_gui.py index b0cb77c..b7576e8 100644 --- a/iw/welcome_gui.py +++ b/iw/welcome_gui.py @@ -93,5 +93,14 @@ class WelcomeWindow (InstallWindow): _("In this chapter you'll be able configure the GRUB \ bootloader."), 10) + + def finalizing(self, anaconda): + self.setWindow(_("Finalizing your Gentoo Installation"), + _("You're almost done. We'll just create a user for \ + your system.\n\ + You'll also be able to choose if you'd like the X \ + Window System and a desktop environment installed on \ + your new system. "), + 11) def getNext(self): return None |