├── .gitignore ├── DownloadController ├── .Makefile.un~ ├── Makefile ├── downconn.cpp ├── downconn.h ├── download ├── download.cpp ├── x64 │ └── download └── x86 │ └── download ├── Imaging ├── Makefile ├── face.xml ├── file.png ├── test ├── test.cpp ├── tracking └── tracking.cpp ├── Install ├── .InstallAUISuite.sh.un~ ├── .UninstallAUISuite.sh.un~ ├── InstallAUISuite.sh ├── UninstallAUISuite.sh └── UpdateAUISuite.sh ├── LICENSE ├── Makefile ├── Misc ├── .sayweather.sh.un~ ├── checkSMSbyvoice.sh ├── check_gmail.py ├── checkmailbyvoice.sh ├── facebookbyvoice.sh ├── getweather.py ├── post_facebook.py ├── saydate.sh ├── sayweather.sh └── textbyvoice.sh ├── PlayVideoScripts ├── playvideo └── playvideo.8.gz ├── README.md ├── TextCommand ├── .Makefile.un~ ├── Makefile ├── gtextcommand ├── gtextcommand.cpp ├── gvapi ├── gvapi.8 ├── gvapi.8.gz ├── gvapi.cpp ├── gvoice.cpp ├── gvoice.h ├── gvoice.o ├── x64 │ ├── gtextcommand │ └── gvapi └── x86 │ ├── gtextcommand │ └── gvoice.o ├── VoiceCommand ├── .Makefile.un~ ├── .speech-recog.sh.un~ ├── .voicecommand.cpp.un~ ├── Makefile ├── TODO ├── commands.conf ├── google ├── speech-recog.sh ├── tts ├── voicecommand ├── voicecommand.8 ├── voicecommand.8.gz ├── voicecommand.cpp ├── voicecommand.h ├── x64 │ └── voicecommand └── x86 │ └── voicecommand └── Youtube ├── .Makefile.un~ ├── Makefile ├── manifest.json ├── update-youtubedl ├── x64 └── youtube-search ├── x86 └── youtube-search ├── youtube ├── youtube-dlfast ├── youtube-safe ├── youtube-search ├── youtube-search.cpp ├── youtube-search.h ├── yt.desktop ├── yt.js ├── ytb.desktop └── ytb.js /.gitignore: -------------------------------------------------------------------------------- 1 | *~ 2 | -------------------------------------------------------------------------------- /DownloadController/.Makefile.un~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StevenHickson/PiAUISuite/HEAD/DownloadController/.Makefile.un~ -------------------------------------------------------------------------------- /DownloadController/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StevenHickson/PiAUISuite/HEAD/DownloadController/Makefile -------------------------------------------------------------------------------- /DownloadController/downconn.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StevenHickson/PiAUISuite/HEAD/DownloadController/downconn.cpp -------------------------------------------------------------------------------- /DownloadController/downconn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StevenHickson/PiAUISuite/HEAD/DownloadController/downconn.h -------------------------------------------------------------------------------- /DownloadController/download: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StevenHickson/PiAUISuite/HEAD/DownloadController/download -------------------------------------------------------------------------------- /DownloadController/download.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StevenHickson/PiAUISuite/HEAD/DownloadController/download.cpp -------------------------------------------------------------------------------- /DownloadController/x64/download: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StevenHickson/PiAUISuite/HEAD/DownloadController/x64/download -------------------------------------------------------------------------------- /DownloadController/x86/download: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StevenHickson/PiAUISuite/HEAD/DownloadController/x86/download -------------------------------------------------------------------------------- /Imaging/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StevenHickson/PiAUISuite/HEAD/Imaging/Makefile -------------------------------------------------------------------------------- /Imaging/face.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StevenHickson/PiAUISuite/HEAD/Imaging/face.xml -------------------------------------------------------------------------------- /Imaging/file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StevenHickson/PiAUISuite/HEAD/Imaging/file.png -------------------------------------------------------------------------------- /Imaging/test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StevenHickson/PiAUISuite/HEAD/Imaging/test -------------------------------------------------------------------------------- /Imaging/test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StevenHickson/PiAUISuite/HEAD/Imaging/test.cpp -------------------------------------------------------------------------------- /Imaging/tracking: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StevenHickson/PiAUISuite/HEAD/Imaging/tracking -------------------------------------------------------------------------------- /Imaging/tracking.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StevenHickson/PiAUISuite/HEAD/Imaging/tracking.cpp -------------------------------------------------------------------------------- /Install/.InstallAUISuite.sh.un~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StevenHickson/PiAUISuite/HEAD/Install/.InstallAUISuite.sh.un~ -------------------------------------------------------------------------------- /Install/.UninstallAUISuite.sh.un~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StevenHickson/PiAUISuite/HEAD/Install/.UninstallAUISuite.sh.un~ -------------------------------------------------------------------------------- /Install/InstallAUISuite.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StevenHickson/PiAUISuite/HEAD/Install/InstallAUISuite.sh -------------------------------------------------------------------------------- /Install/UninstallAUISuite.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StevenHickson/PiAUISuite/HEAD/Install/UninstallAUISuite.sh -------------------------------------------------------------------------------- /Install/UpdateAUISuite.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StevenHickson/PiAUISuite/HEAD/Install/UpdateAUISuite.sh -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StevenHickson/PiAUISuite/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StevenHickson/PiAUISuite/HEAD/Makefile -------------------------------------------------------------------------------- /Misc/.sayweather.sh.un~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StevenHickson/PiAUISuite/HEAD/Misc/.sayweather.sh.un~ -------------------------------------------------------------------------------- /Misc/checkSMSbyvoice.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StevenHickson/PiAUISuite/HEAD/Misc/checkSMSbyvoice.sh -------------------------------------------------------------------------------- /Misc/check_gmail.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StevenHickson/PiAUISuite/HEAD/Misc/check_gmail.py -------------------------------------------------------------------------------- /Misc/checkmailbyvoice.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StevenHickson/PiAUISuite/HEAD/Misc/checkmailbyvoice.sh -------------------------------------------------------------------------------- /Misc/facebookbyvoice.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StevenHickson/PiAUISuite/HEAD/Misc/facebookbyvoice.sh -------------------------------------------------------------------------------- /Misc/getweather.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StevenHickson/PiAUISuite/HEAD/Misc/getweather.py -------------------------------------------------------------------------------- /Misc/post_facebook.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StevenHickson/PiAUISuite/HEAD/Misc/post_facebook.py -------------------------------------------------------------------------------- /Misc/saydate.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StevenHickson/PiAUISuite/HEAD/Misc/saydate.sh -------------------------------------------------------------------------------- /Misc/sayweather.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StevenHickson/PiAUISuite/HEAD/Misc/sayweather.sh -------------------------------------------------------------------------------- /Misc/textbyvoice.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StevenHickson/PiAUISuite/HEAD/Misc/textbyvoice.sh -------------------------------------------------------------------------------- /PlayVideoScripts/playvideo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StevenHickson/PiAUISuite/HEAD/PlayVideoScripts/playvideo -------------------------------------------------------------------------------- /PlayVideoScripts/playvideo.8.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StevenHickson/PiAUISuite/HEAD/PlayVideoScripts/playvideo.8.gz -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StevenHickson/PiAUISuite/HEAD/README.md -------------------------------------------------------------------------------- /TextCommand/.Makefile.un~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StevenHickson/PiAUISuite/HEAD/TextCommand/.Makefile.un~ -------------------------------------------------------------------------------- /TextCommand/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StevenHickson/PiAUISuite/HEAD/TextCommand/Makefile -------------------------------------------------------------------------------- /TextCommand/gtextcommand: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StevenHickson/PiAUISuite/HEAD/TextCommand/gtextcommand -------------------------------------------------------------------------------- /TextCommand/gtextcommand.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StevenHickson/PiAUISuite/HEAD/TextCommand/gtextcommand.cpp -------------------------------------------------------------------------------- /TextCommand/gvapi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StevenHickson/PiAUISuite/HEAD/TextCommand/gvapi -------------------------------------------------------------------------------- /TextCommand/gvapi.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StevenHickson/PiAUISuite/HEAD/TextCommand/gvapi.8 -------------------------------------------------------------------------------- /TextCommand/gvapi.8.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StevenHickson/PiAUISuite/HEAD/TextCommand/gvapi.8.gz -------------------------------------------------------------------------------- /TextCommand/gvapi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StevenHickson/PiAUISuite/HEAD/TextCommand/gvapi.cpp -------------------------------------------------------------------------------- /TextCommand/gvoice.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StevenHickson/PiAUISuite/HEAD/TextCommand/gvoice.cpp -------------------------------------------------------------------------------- /TextCommand/gvoice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StevenHickson/PiAUISuite/HEAD/TextCommand/gvoice.h -------------------------------------------------------------------------------- /TextCommand/gvoice.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StevenHickson/PiAUISuite/HEAD/TextCommand/gvoice.o -------------------------------------------------------------------------------- /TextCommand/x64/gtextcommand: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StevenHickson/PiAUISuite/HEAD/TextCommand/x64/gtextcommand -------------------------------------------------------------------------------- /TextCommand/x64/gvapi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StevenHickson/PiAUISuite/HEAD/TextCommand/x64/gvapi -------------------------------------------------------------------------------- /TextCommand/x86/gtextcommand: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StevenHickson/PiAUISuite/HEAD/TextCommand/x86/gtextcommand -------------------------------------------------------------------------------- /TextCommand/x86/gvoice.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StevenHickson/PiAUISuite/HEAD/TextCommand/x86/gvoice.o -------------------------------------------------------------------------------- /VoiceCommand/.Makefile.un~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StevenHickson/PiAUISuite/HEAD/VoiceCommand/.Makefile.un~ -------------------------------------------------------------------------------- /VoiceCommand/.speech-recog.sh.un~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StevenHickson/PiAUISuite/HEAD/VoiceCommand/.speech-recog.sh.un~ -------------------------------------------------------------------------------- /VoiceCommand/.voicecommand.cpp.un~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StevenHickson/PiAUISuite/HEAD/VoiceCommand/.voicecommand.cpp.un~ -------------------------------------------------------------------------------- /VoiceCommand/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StevenHickson/PiAUISuite/HEAD/VoiceCommand/Makefile -------------------------------------------------------------------------------- /VoiceCommand/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StevenHickson/PiAUISuite/HEAD/VoiceCommand/TODO -------------------------------------------------------------------------------- /VoiceCommand/commands.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StevenHickson/PiAUISuite/HEAD/VoiceCommand/commands.conf -------------------------------------------------------------------------------- /VoiceCommand/google: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StevenHickson/PiAUISuite/HEAD/VoiceCommand/google -------------------------------------------------------------------------------- /VoiceCommand/speech-recog.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StevenHickson/PiAUISuite/HEAD/VoiceCommand/speech-recog.sh -------------------------------------------------------------------------------- /VoiceCommand/tts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StevenHickson/PiAUISuite/HEAD/VoiceCommand/tts -------------------------------------------------------------------------------- /VoiceCommand/voicecommand: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StevenHickson/PiAUISuite/HEAD/VoiceCommand/voicecommand -------------------------------------------------------------------------------- /VoiceCommand/voicecommand.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StevenHickson/PiAUISuite/HEAD/VoiceCommand/voicecommand.8 -------------------------------------------------------------------------------- /VoiceCommand/voicecommand.8.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StevenHickson/PiAUISuite/HEAD/VoiceCommand/voicecommand.8.gz -------------------------------------------------------------------------------- /VoiceCommand/voicecommand.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StevenHickson/PiAUISuite/HEAD/VoiceCommand/voicecommand.cpp -------------------------------------------------------------------------------- /VoiceCommand/voicecommand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StevenHickson/PiAUISuite/HEAD/VoiceCommand/voicecommand.h -------------------------------------------------------------------------------- /VoiceCommand/x64/voicecommand: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StevenHickson/PiAUISuite/HEAD/VoiceCommand/x64/voicecommand -------------------------------------------------------------------------------- /VoiceCommand/x86/voicecommand: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StevenHickson/PiAUISuite/HEAD/VoiceCommand/x86/voicecommand -------------------------------------------------------------------------------- /Youtube/.Makefile.un~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StevenHickson/PiAUISuite/HEAD/Youtube/.Makefile.un~ -------------------------------------------------------------------------------- /Youtube/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StevenHickson/PiAUISuite/HEAD/Youtube/Makefile -------------------------------------------------------------------------------- /Youtube/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StevenHickson/PiAUISuite/HEAD/Youtube/manifest.json -------------------------------------------------------------------------------- /Youtube/update-youtubedl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StevenHickson/PiAUISuite/HEAD/Youtube/update-youtubedl -------------------------------------------------------------------------------- /Youtube/x64/youtube-search: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StevenHickson/PiAUISuite/HEAD/Youtube/x64/youtube-search -------------------------------------------------------------------------------- /Youtube/x86/youtube-search: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StevenHickson/PiAUISuite/HEAD/Youtube/x86/youtube-search -------------------------------------------------------------------------------- /Youtube/youtube: -------------------------------------------------------------------------------- 1 | youtube-safe -------------------------------------------------------------------------------- /Youtube/youtube-dlfast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StevenHickson/PiAUISuite/HEAD/Youtube/youtube-dlfast -------------------------------------------------------------------------------- /Youtube/youtube-safe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StevenHickson/PiAUISuite/HEAD/Youtube/youtube-safe -------------------------------------------------------------------------------- /Youtube/youtube-search: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StevenHickson/PiAUISuite/HEAD/Youtube/youtube-search -------------------------------------------------------------------------------- /Youtube/youtube-search.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StevenHickson/PiAUISuite/HEAD/Youtube/youtube-search.cpp -------------------------------------------------------------------------------- /Youtube/youtube-search.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StevenHickson/PiAUISuite/HEAD/Youtube/youtube-search.h -------------------------------------------------------------------------------- /Youtube/yt.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StevenHickson/PiAUISuite/HEAD/Youtube/yt.desktop -------------------------------------------------------------------------------- /Youtube/yt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StevenHickson/PiAUISuite/HEAD/Youtube/yt.js -------------------------------------------------------------------------------- /Youtube/ytb.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StevenHickson/PiAUISuite/HEAD/Youtube/ytb.desktop -------------------------------------------------------------------------------- /Youtube/ytb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StevenHickson/PiAUISuite/HEAD/Youtube/ytb.js --------------------------------------------------------------------------------