Lo siguiente se prueba con Ubuntu 13.04 y Python del sistema, utilizando enlaces Gtk (PyGobject).
Sin embargo, aquí hay una manera un poco sucia y necesita más investigación:
Resumen
Agregue un .desktop
archivo en /usr/share/xsessions
lo nombraremoscustom
Agregue un .xsession
archivo al usuario en cuestión (sus hijos) nombraremos a su usuario comokid
Cree la aplicación Python GUI para el rompecabezas matemático y ejecútelo .xsession
, lo llamaremos comopuzzle.py
Detalles
sudo vi /usr/share/xsessions/custom.desktop
Agregue lo siguiente en el archivo:
[Desktop Entry]
Name=Custom
Comment=This session logs you into your managed desktop environment
Exec=/etc/X11/Xsession
X-Ubuntu-Gettext-Domain=gnome-session-3.0
Agregue lo siguiente en el archivo:
#!/bin/bash
lightdm &
exec /home/kid/puzzle.py
Agregue lo siguiente en el archivo:
#!/usr/bin/python
# -*- coding: utf-8 -*-
import subprocess
import random
from gi.repository import Gtk
#----------------------------------------------------------------------
class PuzzleWindow(Gtk.Window):
def __init__(self):
Gtk.Window.__init__(self, title="Math Puzzle", resizable=False)
super(PuzzleWindow, self).set_position(Gtk.WindowPosition.CENTER)
super(PuzzleWindow, self).maximize()
self.a_number = random.randint(1, 5)
self.b_number = random.randint(1, 5)
self.result = self.a_number + self.b_number
self.vbox = Gtk.Box(orientation=Gtk.Orientation.VERTICAL, spacing=5)
self.label = Gtk.Label("What is the sum of the numbers bellow?")
self.number_label = Gtk.Label("{num_a} + {num_b}".format(
num_a=self.a_number, num_b=self.b_number))
self.entry = Gtk.Entry()
self.button = Gtk.Button(label="Check answer!")
self.button.connect("clicked", self.on_button_clicked)
self.vbox.pack_start(self.label, True, True, 0)
self.vbox.pack_start(self.number_label, True, True, 0)
self.vbox.pack_start(self.entry, True, True, 0)
self.vbox.pack_start(self.button, True, True, 0)
self.add(self.vbox)
def on_button_clicked(self, widget):
if int(self.entry.get_text()) == self.result:
subprocess.call("unity &", shell=True)
else:
self.label.set_text("Wrong answer, try again.")
#----------------------------------------------------------------------
def main():
"""Application's entry point"""
win = PuzzleWindow()
win.connect("delete-event", Gtk.main_quit)
win.show_all()
Gtk.main()
if __name__ == "__main__":
main()
Resultados:
- Si cierra sesión, en la pantalla de inicio de sesión verá una nueva sesión llamada Personalizada.
- Al elegir la sesión personalizada y después de un inicio de sesión exitoso, se le presentará una pequeña ventana PyGtk (usando pygobject) pidiendo un rompecabezas matemático. No habrá barra superior, iniciador y el resto de los widgets de escritorio predeterminados:
- Si responde correctamente, Unity se cargará ...
Sin embargo, necesita más investigación, pero espero que ayude como punto de partida.