Cosmetic changes to the CLI part of OVOS

This commit is contained in:
j1nx 2021-02-19 12:46:55 +01:00
parent b681eb2820
commit 0bac479c98
4 changed files with 31 additions and 28 deletions

View File

@ -1,3 +1,7 @@
export TERM=xterm-xfree86
export LC_ALL=en_US.UTF-8
export LANG=en_US.UTF-8
if [ -n "$BASH_VERSION" ]; then
# include .bashrc if it exists
if [ -f "$HOME/.bashrc" ]; then

View File

@ -1,10 +1,5 @@
export TERM=xterm-xfree86
PS1='\[\033[01;32m\]\u@\h\[\033[00m\]:\[\033[01;34m\]\w \$\[\033[00m\] '
export LC_ALL=en_US.UTF-8
export LANG=en_US.UTF-8
alias ll='ls -la'
######################################################################

View File

@ -1,3 +1,7 @@
export TERM=xterm-xfree86
export LC_ALL=en_US.UTF-8
export LANG=en_US.UTF-8
if [ -n "$BASH_VERSION" ]; then
# include .bashrc if it exists
if [ -f "$HOME/.bashrc" ]; then

View File

@ -1,26 +1,26 @@
#!/bin/bash
echo -e "\e[36m"
echo " ███████╗ ██████╗ ███████╗ ███╗ ██╗ ██╗ ██╗██████╗ ██╗ ██████╗ ███████╗"
echo " ██════██║ ██╔══██╗██╔════╝ ████╗ ██║ ██║ ██╔██╔═══██║ ██║ ██╔════╝ ██╔════╝"
echo " ██ ██║ ██████╔╝█████╗ ██╔██╗██║ ██║ ██╔╝██║ ██║ ██║ ██║ █████╗"
echo " ██ ██║ ██╔══ ██╔══╝ ██║ ╚███║ ██║ ██╔╝ ██║ ██║ ██║ ██║ ██╔══╝"
echo " ██████║ ██║ ███████║ ██║ ╚██║ ████║ ╚██████╗ ██║ ╚██████╗ ███████║"
echo " ╚═══╝ ╚═╝ ╚══════╝ ╚═╝████████╗ ████████╗ ╚═════╝ ╚═╝ ╚═════╝ ╚══════╝"
echo " ██╔═════██║ ██╔══════╝"
echo " ██║ ██║ ██║"
echo " ██║ ██║ ╚████████╗"
echo " ██║ ██║ ██║"
echo " ██║ ██║ ██║"
echo " ╚████████╔╝ ╚████████╗"
echo " ╚══════╝ ╚═════╝"
echo -e "\e[0m"
echo "*************************************************************************************"
echo "** **"
echo "** --- Welcome to OPEN VOICE OS --- **"
echo "** Mycroft Edition v0.1.0 **"
echo "** **"
echo "** **"
echo "*************************************************************************************"
echo " ___ __ __ _ ___ ____ "
echo " / _ \ _ __ ___ _ _\ \ / /__ (_) ___ ___ / _ \/ ___| "
echo " | | | | '_ \ / _ \ '_ \ \ / / _ \| |/ __/ _ \ | | \___ \ "
echo " | |_| | |_) | __/ | | \ V / (_) | | (_| __/ |_| |___) | "
echo " \___/| .__/ \___|_| |_|\_/ \___/|_|\___\___|\___/|____/ "
echo " |_| "
echo
echo -e "\e[0m"
echo " --- Welcome to OPEN VOICE OS --- "
echo " Mycroft Edition v0.1.0 "
echo
echo "Mycroft Tool COMMANDs:"
echo " mycroft-cli-client Command line client, useful for debugging "
echo " mycroft-config Manage your local Mycroft configuration files "
echo " mycroft-mic-test Record and playback to directly test microphone "
echo " mycroft-listen Activate the microphone to listen for a command "
echo " mycroft-speak <phrase> Have Mycroft speak a phrase to the user "
echo " mycroft-say-to <phrase> Send an utterance to Mycroft as if spoken by a user "
echo
echo "Mycroft Skill Manager COMMANDs:"
echo " msm install <skill|url> Install mycroft skills "
echo " msm remove <skill|url> Uninstall mycroft skills "
echo " msm update Update installed skills "
echo
echo "You can (re)start the mycroft CLI by typing 'mycroft-cli-client'"
mycroft-cli-client