Compare commits
2 Commits
8675caaca6
...
3fde1996ca
Author | SHA1 | Date | |
---|---|---|---|
3fde1996ca | |||
eef3a8756d |
@ -11,13 +11,20 @@ def reboot_system():
|
||||
def shutdown_system():
|
||||
os.system('sudo shutdown now')
|
||||
|
||||
|
||||
def update():
|
||||
pygame.quit()
|
||||
os.system('bash ~/update.sh')
|
||||
sys.exit(1)
|
||||
|
||||
|
||||
def restart_app():
|
||||
sys.exit(1)
|
||||
|
||||
|
||||
def show_black():
|
||||
return 'show_black'
|
||||
return 'show_black'
|
||||
|
||||
|
||||
def quit():
|
||||
sys.exit(0)
|
||||
|
@ -10,7 +10,7 @@ class Surface(surface.GameSurface):
|
||||
self.delay = 1
|
||||
self.font = pygame.font.Font(resources_dir + '/fonts/5Pts5.ttf', 10)
|
||||
self.title = pygame.image.load(resources_dir + '/images/debug/invalid.png').convert_alpha()
|
||||
self.next_surface = 'title'
|
||||
self.next_surface = '_dev_menu'
|
||||
|
||||
def update(self):
|
||||
self.preprocess()
|
||||
|
@ -8,7 +8,8 @@ dev_functions = {
|
||||
'Shutdown': 'shutdown_system',
|
||||
'Update': 'update',
|
||||
'Re-open App': 'restart_app',
|
||||
'Black screen': 'show_black'
|
||||
'Black screen': 'show_black',
|
||||
'!!! Close App': 'quit'
|
||||
}
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user