17 lines
296 B
Python
17 lines
296 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) |