#! /usr/bin/python3 # -*-coding:utf-8 -* from gi.repository import Gtk, Gdk window = Gtk.Window() window.set_default_size(300, 150) window.connect("delete-event", Gtk.main_quit) window.set_title("Welcome to Manjaro") window.set_icon_from_file("/usr/share/icons/manjaro.png") box = Gtk.Box(orientation=Gtk.Orientation.VERTICAL) label1 = Gtk.Label() label1.set_markup("\nWelcome to Manjaro\n\n" "Thank you for using Manjaro\n") label1.set_justify(Gtk.Justification.CENTER) box.pack_start(label1, True, True, 0) label2 = Gtk.Label() label2.set_markup("manjaro user password is: manjaro\n" "root password is: manjaro\n") label2.set_justify(Gtk.Justification.CENTER) box.pack_start(label2, True, True, 0) label3 = Gtk.Label() label3.set_markup("For news and more information\n" "please visit manjaro.org.\n") label3.set_justify(Gtk.Justification.CENTER) box.pack_start(label3, True, True, 0) window.add(box) window.show_all() Gtk.main()