20 lines
330 B
Python
20 lines
330 B
Python
import os
|
|
import sys
|
|
|
|
import pygame
|
|
|
|
|
|
def reboot_system():
|
|
os.system('sudo reboot')
|
|
|
|
|
|
def shutdown_system():
|
|
os.system('sudo shutdown now')
|
|
|
|
def update():
|
|
os.system('bash "cd ~/pocket_friends & git pull"')
|
|
os.system('bash "cd ~/pocket_friends & git checkout ."')
|
|
sys.exit(1)
|
|
|
|
def restart_app():
|
|
sys.exit(1) |