This commit is contained in:
Jeroen Oudshoorn
2024-01-06 21:36:21 +01:00
parent 4525d94faf
commit 3addc64d04
2 changed files with 3 additions and 4 deletions

View File

@ -221,7 +221,7 @@ class AutoUpdate(plugins.Plugin):
if num_installed > 0: if num_installed > 0:
display.update(force=True, new_data={'status': 'Rebooting ...'}) display.update(force=True, new_data={'status': 'Rebooting ...'})
time.sleep(3) time.sleep(3)
pwnagotchi.reboot() os.system("service pwnagotchi restart")
except Exception as e: except Exception as e:
logging.error("[update] %s" % e) logging.error("[update] %s" % e)

View File

@ -11,7 +11,7 @@ from pwnagotchi import plugins
import pwnagotchi.ui.faces as faces import pwnagotchi.ui.faces as faces
from pwnagotchi.bettercap import Client from pwnagotchi.bettercap import Client
from pwnagotchi.ui.components import LabeledValue from pwnagotchi.ui.components import Text
from pwnagotchi.ui.view import BLACK from pwnagotchi.ui.view import BLACK
import pwnagotchi.ui.fonts as fonts import pwnagotchi.ui.fonts as fonts
@ -399,8 +399,7 @@ class FixServices(plugins.Plugin):
pos = (ui.width() / 2 + 35, ui.height() - 11) pos = (ui.width() / 2 + 35, ui.height() - 11)
logging.info("Got here") logging.info("Got here")
ui.add_element('brcmfmac_status', LabeledValue(color=BLACK, label='', value='--', position=pos, ui.add_element('brcmfmac_status', Text(color=BLACK, value='--', position=pos, font=fonts.Small))
label_font=fonts.Small, text_font=fonts.Small))
# called when the ui is updated # called when the ui is updated
def on_ui_update(self, ui): def on_ui_update(self, ui):