2018-11-30 22:59:02 +01:00
|
|
|
#!/bin/bash
|
|
|
|
if [[ $- != *i* ]] ; then
|
|
|
|
# Shell is non-interactive. Be done now!
|
|
|
|
return
|
|
|
|
fi
|
|
|
|
|
|
|
|
xhost +local:root > /dev/null 2>&1
|
|
|
|
|
|
|
|
## git completion
|
|
|
|
source /usr/share/git/completion/git-prompt.sh
|
|
|
|
source /usr/share/git/completion/git-completion.bash
|
|
|
|
|
|
|
|
export GIT_PS1_SHOWDIRTYSTATE=1 GIT_PS1_SHOWSTASHSTATE=1 GIT_PS1_SHOWUNTRACKEDFILES=1
|
|
|
|
export GIT_PS1_SHOWUPSTREAM=verbose GIT_PS1_DESCRIBE_STYLE=branch
|
|
|
|
|
2020-04-18 02:14:55 +02:00
|
|
|
# Base16 Shell
|
2020-04-30 19:44:26 +02:00
|
|
|
if [[ -n "$DISPLAY" ]]
|
|
|
|
then
|
|
|
|
BASE16_SHELL="$HOME/.config/base16-shell/"
|
|
|
|
[ -n "$PS1" ] && \
|
|
|
|
[ -s "$BASE16_SHELL/profile_helper.sh" ] && \
|
|
|
|
eval "$("$BASE16_SHELL/profile_helper.sh")"
|
|
|
|
fi
|
2018-11-30 22:59:02 +01:00
|
|
|
|
|
|
|
## Reset
|
|
|
|
Text_Reset='\e[0m' # Text Reset
|
|
|
|
|
|
|
|
## Regular Colors
|
|
|
|
Black='\e[0;30m' # Black
|
|
|
|
Red='\e[0;31m' # Red
|
|
|
|
Green='\e[0;32m' # Green
|
|
|
|
Yellow='\e[0;33m' # Yellow
|
|
|
|
Blue='\e[0;34m' # Blue
|
|
|
|
Purple='\e[0;35m' # Purple
|
|
|
|
Cyan='\e[0;36m' # Cyan
|
|
|
|
White='\e[0;37m' # White
|
|
|
|
|
|
|
|
## Bold
|
|
|
|
BBlack='\e[1;30m' # Black
|
|
|
|
BRed='\e[1;31m' # Red
|
|
|
|
BGreen='\e[1;32m' # Green
|
|
|
|
BYellow='\e[1;33m' # Yellow
|
|
|
|
BBlue='\e[1;34m' # Blue
|
|
|
|
BPurple='\e[1;35m' # Purple
|
|
|
|
BCyan='\e[1;36m' # Cyan
|
|
|
|
BWhite='\e[1;37m' # White
|
|
|
|
|
|
|
|
## Underline
|
|
|
|
UBlack='\e[4;30m' # Black
|
|
|
|
URed='\e[4;31m' # Red
|
|
|
|
UGreen='\e[4;32m' # Green
|
|
|
|
UYellow='\e[4;33m' # Yellow
|
|
|
|
UBlue='\e[4;34m' # Blue
|
|
|
|
UPurple='\e[4;35m' # Purple
|
|
|
|
UCyan='\e[4;36m' # Cyan
|
|
|
|
UWhite='\e[4;37m' # White
|
|
|
|
|
|
|
|
## Background
|
|
|
|
On_Black='\e[40m' # Black
|
|
|
|
On_Red='\e[41m' # Red
|
|
|
|
On_Green='\e[42m' # Green
|
|
|
|
On_Yellow='\e[43m' # Yellow
|
|
|
|
On_Blue='\e[44m' # Blue
|
|
|
|
On_Purple='\e[45m' # Purple
|
|
|
|
On_Cyan='\e[46m' # Cyan
|
|
|
|
On_White='\e[47m' # White
|
|
|
|
|
|
|
|
## High Intensity
|
|
|
|
# IBlack='\e[0;90m' # Black
|
|
|
|
# IRed='\e[0;91m' # Red
|
|
|
|
# IGreen='\e[0;92m' # Green
|
|
|
|
# IYellow='\e[0;93m' # Yellow
|
|
|
|
# IBlue='\e[0;94m' # Blue
|
|
|
|
# IPurple='\e[0;95m' # Purple
|
|
|
|
# ICyan='\e[0;96m' # Cyan
|
|
|
|
# IWhite='\e[0;97m' # White
|
|
|
|
|
|
|
|
## Bold High Intensity
|
|
|
|
# BIBlack='\e[1;90m' # Black
|
|
|
|
# BIRed='\e[1;91m' # Red
|
|
|
|
# BIGreen='\e[1;92m' # Green
|
|
|
|
# BIYellow='\e[1;93m' # Yellow
|
|
|
|
# BIBlue='\e[1;94m' # Blue
|
|
|
|
# BIPurple='\e[1;95m' # Purple
|
|
|
|
# BICyan='\e[1;96m' # Cyan
|
|
|
|
# BIWhite='\e[1;97m' # White
|
|
|
|
|
|
|
|
## High Intensity backgrounds
|
|
|
|
# On_IBlack='\e[0;100m' # Black
|
|
|
|
# On_IRed='\e[0;101m' # Red
|
|
|
|
# On_IGreen='\e[0;102m' # Green
|
|
|
|
# On_IYellow='\e[0;103m' # Yellow
|
|
|
|
# On_IBlue='\e[0;104m' # Blue
|
|
|
|
# On_IPurple='\e[0;105m' # Purple
|
|
|
|
# On_ICyan='\e[0;106m' # Cyan
|
|
|
|
# On_IWhite='\e[0;107m' # White
|
|
|
|
|
|
|
|
# Less colors
|
2020-05-12 18:25:43 +02:00
|
|
|
export LESS_TERMCAP_mb=$(tput blink)
|
|
|
|
export LESS_TERMCAP_md=$(tput bold)
|
|
|
|
export LESS_TERMCAP_me=$(tput sgr0)
|
|
|
|
export LESS_TERMCAP_so=$(tput smso)
|
|
|
|
export LESS_TERMCAP_se=$(tput rmso)
|
|
|
|
export LESS_TERMCAP_us=$(tput sitm)
|
|
|
|
export LESS_TERMCAP_ue=$(tput sgr0)
|
|
|
|
|
2018-11-30 22:59:02 +01:00
|
|
|
export LESS="-RI"
|
|
|
|
|
|
|
|
use_color=true
|
|
|
|
|
|
|
|
prompt() {
|
|
|
|
error=$?
|
|
|
|
echo -ne "${BBlack}"
|
|
|
|
echo -n "$(date +%H:%M:%S) "
|
|
|
|
if [[ $error -eq 0 ]]
|
|
|
|
then
|
|
|
|
echo -ne "${Green}OK"
|
|
|
|
elif [[ $error -eq 127 ]]
|
|
|
|
then
|
|
|
|
echo -ne "${Yellow}Unknown command (error $error)"
|
|
|
|
else
|
|
|
|
echo -ne "${Red}Error $error"
|
|
|
|
fi
|
|
|
|
echo -ne "$Text_Reset"
|
|
|
|
__git_ps1
|
|
|
|
echo
|
|
|
|
}
|
|
|
|
|
|
|
|
PROMPT_COMMAND=prompt
|
|
|
|
|
|
|
|
# Set colorful PS1 only on colorful terminals.
|
|
|
|
# dircolors --print-database uses its own built-in database
|
|
|
|
# instead of using /etc/DIR_COLORS. Try to use the external file
|
|
|
|
# first to take advantage of user additions. Use internal bash
|
|
|
|
# globbing instead of external grep binary.
|
|
|
|
safe_term=${TERM//[^[:alnum:]]/?} # sanitize TERM
|
|
|
|
match_lhs=""
|
|
|
|
[[ -f ~/.dir_colors ]] && match_lhs="${match_lhs}$(<~/.dir_colors)"
|
|
|
|
[[ -f /etc/DIR_COLORS ]] && match_lhs="${match_lhs}$(</etc/DIR_COLORS)"
|
|
|
|
[[ -z ${match_lhs} ]] \
|
|
|
|
&& type -P dircolors >/dev/null \
|
|
|
|
&& match_lhs=$(dircolors --print-database)
|
|
|
|
[[ $'\n'${match_lhs} == *$'\n'"TERM "${safe_term}* ]] && use_color=true
|
|
|
|
|
|
|
|
if ${use_color} ; then
|
|
|
|
# Enable colors for ls, etc. Prefer ~/.dir_colors #64489
|
|
|
|
if type -P dircolors >/dev/null ; then
|
|
|
|
if [[ -f ~/.dir_colors ]] ; then
|
|
|
|
eval $(dircolors -b ~/.dir_colors)
|
|
|
|
elif [[ -f /etc/DIR_COLORS ]] ; then
|
|
|
|
eval $(dircolors -b /etc/DIR_COLORS)
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
|
|
|
|
if [[ ${EUID} == 0 ]] ; then
|
2020-05-19 00:27:05 +02:00
|
|
|
PS1='\[\033[01;31m\][\h\[\033[01;36m\] \w\[\033[01;31m\]]\n\$\[\033[00m\] '
|
2018-11-30 22:59:02 +01:00
|
|
|
else
|
2020-05-19 00:27:05 +02:00
|
|
|
PS1='\[\033[01;32m\][\u@\h\[\033[01;37m\] \w\[\033[01;32m\]]\n\$\[\033[00m\] '
|
2018-11-30 22:59:02 +01:00
|
|
|
fi
|
|
|
|
|
|
|
|
alias ls='ls --color=auto'
|
|
|
|
alias grep='grep --colour=auto'
|
|
|
|
alias egrep='egrep --colour=auto'
|
|
|
|
alias fgrep='fgrep --colour=auto'
|
|
|
|
else
|
|
|
|
if [[ ${EUID} == 0 ]] ; then
|
|
|
|
# show root@ when we don't have colors
|
|
|
|
PS1='\u@\h \W \$ '
|
|
|
|
else
|
|
|
|
PS1='\u@\h \w \$ '
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
|
|
|
|
unset use_color safe_term match_lhs sh
|
|
|
|
|
|
|
|
export PAGER=less
|
|
|
|
|
|
|
|
alias df='df -h' # human-readable sizes
|
|
|
|
alias free='free -m' # show sizes in MB
|
|
|
|
alias np='vim -w PKGBUILD'
|
|
|
|
#alias more=less
|
|
|
|
|
|
|
|
xhost +local:root > /dev/null 2>&1
|
|
|
|
|
|
|
|
complete -cf sudo
|
|
|
|
|
|
|
|
# Bash won't get SIGWINCH if another process is in the foreground.
|
|
|
|
# Enable checkwinsize so that bash will check the terminal size when
|
|
|
|
# it regains control. #65623
|
|
|
|
# http://cnswww.cns.cwru.edu/~chet/bash/FAQ (E11)
|
|
|
|
shopt -s checkwinsize
|
|
|
|
|
|
|
|
shopt -s expand_aliases
|
|
|
|
|
|
|
|
|
|
|
|
# export QT_SELECT=4
|
|
|
|
|
|
|
|
# Enable history appending instead of overwriting. #139609
|
|
|
|
shopt -s histappend
|
|
|
|
|
|
|
|
#
|
|
|
|
# # ex - archive extractor
|
|
|
|
# # usage: ex <file>
|
|
|
|
ex ()
|
|
|
|
{
|
|
|
|
if [ -f $1 ] ; then
|
|
|
|
case $1 in
|
|
|
|
*.tar.bz2) tar xjf $1 ;;
|
|
|
|
*.tar.gz) tar xzf $1 ;;
|
|
|
|
*.bz2) bunzip2 $1 ;;
|
|
|
|
*.rar) unrar x $1 ;;
|
|
|
|
*.gz) gunzip $1 ;;
|
|
|
|
*.tar) tar xf $1 ;;
|
|
|
|
*.tbz2) tar xjf $1 ;;
|
|
|
|
*.tgz) tar xzf $1 ;;
|
|
|
|
*.zip) unzip $1 ;;
|
|
|
|
*.Z) uncompress $1;;
|
|
|
|
*.7z) 7z x $1 ;;
|
|
|
|
*) echo "'$1' cannot be extracted via ex()" ;;
|
|
|
|
esac
|
|
|
|
else
|
|
|
|
echo "'$1' is not a valid file"
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
|
|
|
more() {
|
|
|
|
if [ $# -eq 1 ]; then if [ $1 = "ituri" ]; then
|
|
|
|
echo "te salutant"; return
|
|
|
|
fi; fi
|
|
|
|
\less "$@"
|
|
|
|
}
|
|
|
|
|
|
|
|
colors() {
|
|
|
|
local fgc bgc vals seq0
|
|
|
|
|
|
|
|
printf "Color escapes are %s\n" '\e[${value};...;${value}m'
|
|
|
|
printf "Values 30..37 are \e[33mforeground colors\e[m\n"
|
|
|
|
printf "Values 40..47 are \e[43mbackground colors\e[m\n"
|
|
|
|
printf "Value 1 gives a \e[1mbold-faced look\e[m\n\n"
|
|
|
|
|
|
|
|
# foreground colors
|
|
|
|
for fgc in {30..37}; do
|
|
|
|
# background colors
|
|
|
|
for bgc in {40..47}; do
|
|
|
|
fgc=${fgc#37} # white
|
|
|
|
bgc=${bgc#40} # black
|
|
|
|
|
|
|
|
vals="${fgc:+$fgc;}${bgc}"
|
|
|
|
vals=${vals%%;}
|
|
|
|
|
|
|
|
seq0="${vals:+\e[${vals}m}"
|
|
|
|
printf " %-9s" "${seq0:-(default)}"
|
|
|
|
printf " ${seq0}TEXT\e[m"
|
|
|
|
printf " \e[${vals:+${vals+$vals;}}1mBOLD\e[m"
|
|
|
|
done
|
|
|
|
echo; echo
|
|
|
|
done
|
|
|
|
}
|
|
|
|
|
|
|
|
# better yaourt colors
|
|
|
|
# export YAOURT_COLORS="nb=1:pkg=1:ver=1;32:lver=1;45:installed=1;42:grp=1;34:od=1;41;5:votes=1;44:dsc=0:other=1;35"
|
|
|
|
|
|
|
|
export EDITOR=vim
|
|
|
|
|
2022-11-10 00:55:04 +01:00
|
|
|
# Debug
|
|
|
|
export PS4='+ ${BASH_SOURCE:-}:${FUNCNAME[0]:-}:L${LINENO:-}: '
|
|
|
|
|
2018-11-30 22:59:02 +01:00
|
|
|
# fix "xdg-open fork-bomb" export your preferred browser from here
|
|
|
|
|
|
|
|
alias conf='vim $HOME/.i3/config'
|
|
|
|
alias comp='vim $HOME/.config/compton.conf'
|
|
|
|
alias fixit='sudo rm -f /var/lib/pacman/db.lck'
|
|
|
|
alias inst='yaourt -S'
|
|
|
|
alias la='ls -la --group-directories-first --time-style=+"%d.%m.%Y %H:%M" --color=auto -F'
|
|
|
|
alias ll='ls -l --group-directories-first --time-style=+"%d.%m.%Y %H:%M" --color=auto -F'
|
2022-09-19 21:23:33 +02:00
|
|
|
alias l='ls -lAh'
|
2021-05-18 19:13:45 +02:00
|
|
|
alias rm='rm --preserve-root -I'
|
2018-11-30 22:59:02 +01:00
|
|
|
alias mirrors='sudo pacman-mirrors -g'
|
|
|
|
alias printer='system-config-printer'
|
|
|
|
alias update='yaourt -Syua'
|
|
|
|
alias mk='vim makefile'
|
|
|
|
alias n='vim'
|
|
|
|
alias diff='icdiff'
|
|
|
|
alias f='fuck'
|
|
|
|
#alias grep='rg'
|
|
|
|
alias news='newsbeuter'
|
|
|
|
#alias ssh-add='ssh-add -t 1800'
|
|
|
|
alias meteo='curl -H "Accept-Language: fr" wttr.in/Nantes'
|
|
|
|
alias moon='curl -H "Accept-Language: fr" wttr.in/Moon'
|
|
|
|
|
2020-03-03 21:09:37 +01:00
|
|
|
. /usr/share/doc/ranger/examples/shell_automatic_cd.sh
|
2018-11-30 22:59:02 +01:00
|
|
|
|
2019-09-22 03:31:29 +02:00
|
|
|
#eval $(thefuck --alias)
|
2018-11-30 22:59:02 +01:00
|
|
|
|
|
|
|
# change title
|
|
|
|
|
|
|
|
trap 'echo -ne "\e]0;$PWD > $BASH_COMMAND\007"' DEBUG
|
2020-01-09 21:17:01 +01:00
|
|
|
|