Changes between Version 25 and Version 26 of mycroft-gui-mark-2_sys


Ignore:
Timestamp:
05/21/20 21:46:16 (4 years ago)
Author:
admin
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • mycroft-gui-mark-2_sys

    v25 v26  
    181181}}}
    182182=== Start mycroft-gui app ===
     183to start the app from the command line use
     184* {{{ QT_QPA_PLATFORM=eglfs mycroft-gui-app }}}
     185to start it automatically using systemd:
     186* {{{ mkdir -p ~/.config/systemd/user }}}
     187* {{{ nano ~/.config/systemd/user/mymycroftgui.service }}}
     188with the content:
     189{{{
     190[Unit]
     191Description=start mycroft-gui
     192After=network.target
     193
     194[Service]
     195Type=simple
     196Environment="QT_QPA_PLATFORM=eglfs"
     197ExecStart=/usr/bin/mycroft-gui-app
     198
     199[Install]
     200WantedBy=default.target
     201}}}
     202then start it
     203* {{{ systemctl start --user mymycroftgui }}}
     204and enable the automatic start with
     205* {{{ systemctl enable --user mymycroftgui }}}