darkrc/bashrc

132 lines
3.8 KiB
Bash
Raw Normal View History

# vim: set noexpandtab :miv #
alias hello='echo "Hello :)"'
alias temp='watch -t -d -n 1 sensors -A coretemp-isa-0000'
alias w='watch -t -d -n 1'
alias freq='watch -t -d -n 1 "cpufreq-info -c 0 -f; cpufreq-info -c 1 -f"'
export PATH=~/.bin:$PATH
alias setclip='xclip -selection c'
alias getclip='xclip -selection clipboard -o'
alias wgetclip='wget `xclip -selection clipboard -o`'
export HISTIGNORE='ls:clear:history'
# alias cmatrix='cmatrix -b -C `r.choose green red blue white yellow cyan magenta black`'
alias youtube-mp3='/home/darkwiiplayer/.local/bin/youtube-dl --extract-audio --audio-format mp3'
alias oneko='oneko -speed 20 -fg "#2f2f2f" -cursor 2 -name neko'
alias sakura='oneko -bg "#ffddee" -sakura -name sakura'
alias tmux='tmux -2'
alias pi='ssh pi -t ''tmux a -t home \|\| tmux new-session -s home'''
alias server='ssh server -t ''tmux a -t home \|\| tmux new-session -s home'''
alias ltc='getclip | luac -l -'
2018-03-09 13:57:04 +00:00
alias sign='gpg --armor --no-version --detach-sign --local-user darkwiiplayer'
2018-11-07 12:30:49 +00:00
alias workspace='cd ~/workspace'
2019-02-25 12:47:29 +00:00
alias shit='git'
2018-11-07 12:30:49 +00:00
stty -ixon
2017-11-04 09:19:44 +00:00
# Enable Vi editing mode
set -o vi
2018-11-06 12:12:15 +00:00
export LESSCHARSET=utf-8
git__prompt () {
2018-11-19 17:54:42 +00:00
git rev-parse --show-toplevel > /dev/null 2>&1
if [ $? = 0 ]
then
status=`git status --short 2>/dev/null`
branch=`git branch | grep -Po '(?<=\* )[[:alnum:]_-]*'`
2018-11-26 14:14:41 +00:00
modif=`echo "$status" | grep -Po '^\s*M' | wc -l`
untracked=`echo "$status" | grep -Po '^\?\?' | wc -l`
added=`echo "$status" | grep -Po '^\s*[A]' | wc -l`
deleted=`echo "$status" | grep -Po '^\s*[D]' | wc -l`
renamed=`echo "$status" | grep -Eo '^\s*R' | wc -l`
stat=`git branch -vv | grep -P '^\*' | grep -Po '\[.*\]'`
ahead=`echo $stat | grep -Po '(?<=ahead )\d*'`
behind=`echo $stat | grep -Po '(?<=behind )\d*'`
gray='\033[01;30m'
blue='\033[01;34m'
yellow='\033[01;33m'
red='\033[01;31m'
green='\033[01;32m'
2018-11-19 17:54:42 +00:00
# SYNC
2018-11-26 14:14:41 +00:00
if [ -z $ahead ] && [ -z $behind ]
then
echo -ne "" # Nothing to do here
elif [ -z $ahead ]
then
echo -ne " ${yellow}${behind}"
elif [ -z $behind ]
then
echo -ne " ${green}${ahead}"
else
echo -ne " ${red}${behind}${yellow}${ahead}"
fi
# BRANCH
2018-11-19 20:20:55 +00:00
if [ -z $branch ]
then
head=`git rev-parse --short HEAD 2>&1`
if [[ "$head" =~ fatal* ]]
then
branch='{no commits}'
else
branch='#'"$head"
fi
2018-11-19 20:20:55 +00:00
fi
if [ "$branch" = 'master' ]
2018-11-19 17:54:42 +00:00
then
echo -ne " $blue$branch"
elif [ "${branch:0:1}" = '#' ]
then
echo -ne " $red$branch"
2018-11-19 17:54:42 +00:00
else
echo -ne " $yellow$branch"
2018-11-19 17:54:42 +00:00
fi
# CHANGES
if [ $modif = 0 ]
2018-11-19 17:54:42 +00:00
then
2018-11-26 14:14:41 +00:00
echo -ne # "${gray}:\033[01;36m$modif" # No modified files
2018-11-19 17:54:42 +00:00
else
2018-11-26 14:14:41 +00:00
echo -ne "${gray}:\033[01;33m$modif" # Modified files
2018-11-19 17:54:42 +00:00
fi
if [ $added -ne 0 ]
2018-11-19 17:54:42 +00:00
then
2018-11-26 14:14:41 +00:00
echo -ne " ${green}+$added"
fi
if [ $deleted -ne 0 ]
then
2018-11-26 14:14:41 +00:00
echo -ne " ${red}-$deleted"
fi
2018-11-26 14:14:41 +00:00
if [ $renamed -ne 0 ]
then
2018-11-26 14:14:41 +00:00
echo -ne " ${yellow}$renamed$renamed"
fi
2018-11-26 14:14:41 +00:00
if [ $untracked -ne 0 ]
2018-11-19 17:54:42 +00:00
then
2018-11-26 14:14:41 +00:00
echo -ne " ${red}+$untracked"
2018-11-19 17:54:42 +00:00
fi
fi
}
PS1n='\[\033[00;34m\]┌─╼ \[\033[01;34m\]`date +%d.%m.%y` \[\033[00;33m\]\$ \[\033[01;35m\]\u\[\033[00;34m\]@\[\033[01;35m\]\h`git__prompt` \[\033[01;35m\]\w \[\033[01;34m\]`find -mindepth 1 -maxdepth 1 -type d | wc -l`\[\033[00;34m\]d \[\033[01;32m\]`find -maxdepth 1 -type f | wc -l`\[\033[00;32m\]f\[\033[00m\]
2018-11-06 19:02:35 +00:00
\[\033[00;34m\]└╼ \[\033[00m\]'
PS1c='\[\033[00;34m\]┌─╼ \[\033[00;33m\]\$ \[\033[01;35m\]\u`git__prompt` \[\033[01;35m\]`basename \`dirs +0\`` \[\033[01;34m\]`find -mindepth 1 -maxdepth 1 -type d | wc -l`\[\033[00;34m\]d \[\033[01;32m\]`find -maxdepth 1 -type f | wc -l`\[\033[00;32m\]f\[\033[00m\]
\[\033[00;34m\]└╼ \[\033[00m\]'
PS1=$PS1n
2018-12-23 20:40:14 +00:00
cd() {
if [ -f .bashcdout ]
then
source .bashcdout
fi
builtin cd "$@" || return
if [ -f .bashcd ]
then
source .bashcd
fi
}
2019-02-25 12:47:29 +00:00
export GPG_TTY="$(tty)" # This is necessary for the gpg-agent, apparently