0
0
Fork 0
mirror of https://github.com/boltgolt/howdy.git synced 2024-09-12 09:41:18 +02:00

Merge branch 'boltgolt:beta' into beta

This commit is contained in:
Daudi Wampamba 2024-05-20 20:12:08 +01:00 committed by GitHub
commit 5720faaa49
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -3,6 +3,7 @@ import time
from i18n import _
from gi.repository import Gtk as gtk
from gi.repository import GObject as gobject
def on_user_change(self, select):
@ -73,13 +74,13 @@ def on_model_add(self, button):
dialog = gtk.MessageDialog(parent=self, flags=gtk.DialogFlags.MODAL, buttons=gtk.ButtonsType.NONE)
dialog.set_title(_("Creating Model"))
dialog.props.text = _("Please look directly into the camera")
dialog.get_child().connect("map", lambda w: execute_add(self, dialog, entered_name, self.active_user))
dialog.show_all()
# Wait a bit to allow the user to read the dialog
gobject.timeout_add(600, lambda: execute_add(self, dialog, entered_name))
def execute_add(box, dialog, entered_name, user):
time.sleep(1)
def execute_add(box, dialog, entered_name):
status, output = subprocess.getstatusoutput(["howdy add '" + entered_name + "' -y -U " + box.active_user])