Warning, /plasma-mobile/mycroft-plasmoid-mobile/README.md is written in an unsupported language. File is not indexed.

0001 # Mycroft Plasma Mobile Plasmoid
0002 #### Mycroft Ai Plasmoid and Skills for KDE Plasma Mobile
0003 
0004 1. Installing Mycroft on Plasma Mobile (Nexus 5x):
0005   + git clone https://github.com/MycroftAI/mycroft-core
0006   + cd ~/mycroft-core/scripts/
0007   + nano install-mimic.sh
0008   + Replace everything after # download and install mimic comment in file with the following:
0009  ```
0010 if [ ! -d ${MIMIC_DIR} ]; then
0011     git clone --branch ${MIMIC_VERSION} https://github.com/MycroftAI/mimic.git --depth=1
0012     cd ${MIMIC_DIR}
0013     ./autogen.sh
0014     ./configure --with-audio=portaudio --enable-shared --prefix=$(pwd) --disable-vid_gb_ap
0015     make
0016     make install
0017 else
0018     # ensure mimic is up to date
0019     cd ${MIMIC_DIR}
0020     make clean 2> /dev/null || true
0021     git remote add all-branches https://github.com/mycroftai/mimic/ 2> /dev/null || true
0022     git fetch --all --tags --prune
0023     git checkout tags/${MIMIC_VERSION}
0024     ./autogen.sh
0025     ./configure --with-audio=portaudio --enable-shared --prefix=$(pwd) --disable-vid_gb_ap
0026     make clean
0027     make
0028     make install
0029 fi
0030 ```  
0031   + Run: ./dev_setup.sh  
0032   + Download / Clone Mycroft Plasmoid from this Repository: git clone https://github.com/AIIX/plasma-mycroft-mobile 
0033   
0034   + Plasma Mobile KDE Neon Plasmoid Dependencies 
0035    ```
0036 sudo apt-get install libkf5notifications-data libkf5notifications-dev qml-module-qtquick2 qml-module-qtquick-controls2 qml-module-qtquick-controls qml-module-qtwebsockets qml-module-qt-websockets qtdeclarative5-qtquick2-plugin qtdeclarative5-models-plugin cmake cmake-extras cmake-data qml-module-qtquick-layouts libkf5plasma-dev extra-cmake-modules qtdeclarative5-dev build-essential g++ gettext libqt5webkit5 libqt5webkit5-dev libkf5i18n-data libkf5i18n-dev libkf5i18n5 qml-module-qtgraphicaleffects libqt5dbus5 libkf5dbusaddons-dev libdbus-1-dev libdbus-glib-1-dev -y
0037  ```
0038  
0039 2. Installation Instructions [Go To Downloaded Plasmoid Folder and run the following commands]
0040  ```
0041   cd plasma-mycroft-mobile
0042   mkdir build
0043   cd build
0044   cmake .. -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_BUILD_TYPE=Release   -DKDE_INSTALL_LIBDIR=lib -DKDE_INSTALL_USE_QT_SYS_PATHS=ON
0045   make
0046   sudo make install
0047   sudo chmod +x /usr/share/plasma/plasmoids/org.kde.phone.mycroftplasmoid/contents/code/startservice.sh
0048   sudo chmod +x /usr/share/plasma/plasmoids/org.kde.phone.mycroftplasmoid/contents/code/stopservice.sh
0049   sudo chmod +x /usr/share/plasma/plasmoids/org.kde.phone.mycroftplasmoid/contents/code/pkgstartservice.sh
0050   sudo chmod +x /usr/share/plasma/plasmoids/org.kde.phone.mycroftplasmoid/contents/code/pkgstopservice.sh
0051    ```
0052   + Restart Device