summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRichard Braun <rbraun@sceen.net>2018-01-08 11:23:11 +0100
committerRichard Braun <rbraun@sceen.net>2018-01-08 11:23:11 +0100
commit70a1cddb3312d4227ecc6cb5b92c6f7f9f4297cc (patch)
tree6bf7d37b8b51f608c93f125f27540d89e4862fa5
parent41458cf5b0105bbc2bd33f5715cbf60c184d211a (diff)
Add an alias for minicom
-rw-r--r--bash/bash_aliases1
-rw-r--r--bash/bashrc4
2 files changed, 2 insertions, 3 deletions
diff --git a/bash/bash_aliases b/bash/bash_aliases
index e1de413..259e49a 100644
--- a/bash/bash_aliases
+++ b/bash/bash_aliases
@@ -5,3 +5,4 @@ export REPREPRO_BASE_DIR=~/.reprepro
alias dquilt="quilt --quiltrc=${HOME}/.quiltrc-dpkg"
alias gitl="git log --graph --oneline --decorate --all"
+alias minicom="minicom -c on"
diff --git a/bash/bashrc b/bash/bashrc
index a1ca29e..d388f4f 100644
--- a/bash/bashrc
+++ b/bash/bashrc
@@ -37,7 +37,7 @@ fi
# set a fancy prompt (non-color, unless we know we "want" color)
case "$TERM" in
- xterm-color|*-256color) color_prompt=yes;;
+ xterm-color) color_prompt=yes;;
esac
# uncomment for a colored prompt, if the terminal has the capability; turned
@@ -57,10 +57,8 @@ if [ -n "$force_color_prompt" ]; then
fi
if [ "$color_prompt" = yes ]; then
- #PS1='${debian_chroot:+($debian_chroot)}\[\033[01;32m\]\u@\h\[\033[00m\]:\[\033[01;34m\]\w\[\033[00m\]\$ '
PS1='[${debian_chroot:+($debian_chroot)}\[\033[01;32m\]\u@\h\[\033[00m\] \[\033[01;34m\]\W \A\[\033[00m\]]\$ '
else
- #PS1='${debian_chroot:+($debian_chroot)}\u@\h:\w\$ '
PS1='[${debian_chroot:+($debian_chroot)}\u@\h \W \A]\$ '
fi
unset color_prompt force_color_prompt