X-Git-Url: https://code.delx.au/dotfiles/blobdiff_plain/2a659fd44b45c5d8f06d3dd056892cf26572e296..df9a6ce138275cd8cd7ce9b09a0c6c6cecfad4af:/.bashrc diff --git a/.bashrc b/.bashrc index d12bc4e..443153f 100644 --- a/.bashrc +++ b/.bashrc @@ -1,85 +1,275 @@ -# Run when a random bash is started. This is always run after the login -# shell. It sets up the shell to have a nice prompt and xterm titlebar, etc. -# It should NOT set any environment variables like the PATH. -# Copy this around to all your machines and make machine specific -# customisations to ~/.bashrc_local - -# Run .bash_profile if logging in from ssh -[ ${RUN_BASH_PROFILE:-0} -eq 1 -a -f ~/.bash_profile ] && source ~/.bash_profile && return - -# If not running interactively do nothing -[ -z "$PS1" ] && return - -# Terminals that we want coloured prompts in -[ -n "$COLORTERM" ] && PS1_COLOR=1 -[ "$TERM" = "linux" ] && PS1_COLOR=1 && DARK=1 -[ "$TERM" = "screen" ] && PS1_COLOR=1 -[ "$TERM" = "xterm" ] && PS1_COLOR=1 -[ "$TERM" = "xterm-color" ] && PS1_COLOR=1 -[ "$TERM" = "rxvt" ] && PS1_COLOR=1 -[ "$TERM" = "rxvt-unicode" ] && PS1_COLOR=1 - -# Use colours appropriate to a light on dark terminal, we can autodetect -# this for some terminals, for others we define it above. -if [ -n "$COLORFGBG" ]; then - FGCOLOR=$(echo $COLORFGBG | cut -d ';' -f 1) - BGCOLOR=$(echo $COLORFGBG | cut -d ';' -f 3) - if [ "$FGCOLOR" -gt "$BGCOLOR" ]; then - DARK=1 - fi - unset FGCOLOR - unset BGCOLOR -elif [ ${DARK:-0} -eq 0 ]; then - export COLORFGBG="0;default;15" -elif [ ${DARK:-0} -eq 1 ]; then - export COLORFGBG="15;default;0" +# shellcheck disable=SC1090 # -- Can't follow non-constant source + +########################### +# Settings for all shells # +########################### + +# Set umask, depending on the user ID +if [ "$(id -un)" = "root" ]; then + umask 0022 +else + umask 0007 +fi + +# Add ~/bin and subdirs to PATH if needed +while read -r p; do + echo "$PATH" | tr ':' '\n' | grep -qxF "$p" || PATH="${p}:$PATH" +done < <(find -L ~/bin -maxdepth 1 -type d 2> /dev/null) + +# Set EMAIL from the freedesktop environment.d +if [ -r ~/.config/environment.d/10-email.conf ]; then + source ~/.config/environment.d/10-email.conf + export EMAIL +fi + +# Pick up SSH agent socket +if [ -z "$SSH_AUTH_SOCK" ]; then + if [ -r ~/.ssh-agent.env ]; then + source ~/.ssh-agent.env + else + SSH_AUTH_SOCK="/run/user/$(id -u)/keyring/ssh" + export SSH_AUTH_SOCK + fi +fi + + +########################### +# Interactive shells only # +########################### + +if [ -z "${PS1}" ]; then + return fi -# Set the prompt colour, and the colors for the 'ls' command appropriately, -# depending on the background of the terminal. -if [ ${PS1_COLOR:-0} -eq 1 ]; then - if [ ${DARK:-0} -eq 0 ]; then - LS_COLORS="no=00:fi=00:di=00;34:ln=00;36:pi=40;33:so=00;35:bd=40;33;01:cd=40;33;01:or=01;05;37;41:mi=01;05;37;41:ex=00;32:*.cmd=00;32:*.exe=00;32:*.com=00;32:*.btm=00;32:*.bat=00;32:*.sh=00;32:*.csh=00;32:*.tar=00;31:*.tgz=00;31:*.arj=00;31:*.taz=00;31:*.lzh=00;31:*.zip=00;31:*.z=00;31:*.Z=00;31:*.gz=00;31:*.bz2=00;31:*.bz=00;31:*.tz=00;31:*.rpm=00;31:*.cpio=00;31:*.jpg=00;35:*.gif=00;35:*.bmp=00;35:*.xbm=00;35:*.xpm=00;35:*.png=00;35:*.tif=00;35" - PS1='\[\033[31m\]\u@\h\[\033[00m\]:\[\033[34m\]\w\[\033[00m\]\$ ' - else - LS_COLORS='no=00:fi=00:di=01;34:ln=01;36:pi=40;33:so=01;35:do=01;35:bd=40;33;01:cd=40;33;01:or=40;31;01:ex=01;32:*.tar=01;31:*.tgz=01;31:*.arj=01;31:*.taz=01;31:*.lzh=01;31:*.zip=01;31:*.z=01;31:*.Z=01;31:*.gz=01;31:*.bz2=01;31:*.deb=01;31:*.rpm=01;31:*.jar=01;31:*.jpg=01;35:*.jpeg=01;35:*.gif=01;35:*.bmp=01;35:*.pbm=01;35:*.pgm=01;35:*.ppm=01;35:*.tga=01;35:*.xbm=01;35:*.xpm=01;35:*.tif=01;35:*.tiff=01;35:*.png=01;35:*.mpg=01;35:*.mpeg=01;35:*.avi=01;35:*.fli=01;35:*.gl=01;35:*.dl=01;35:*.xcf=01;35:*.xwd=01;35:*.ogg=01;35:*.mp3=01;35:*.wav=01;35:' - PS1='\[\033[01;31m\]\u@\h\[\033[00m\]:\[\033[01;34m\]\w\[\033[00m\]\$ ' - fi - - export LS_COLORS - unset PS1_COLOR - unset DARK + +################ +# bash options # +################ + +# Bash should check the terminal size after every command terminates +shopt -s checkwinsize + +# Don't attempt to tab-complete an empty line +shopt -s no_empty_cmd_completion + +# Prevent overwriting existing files on stdout redirection +set -o noclobber + +# Better history +shopt -s histappend +shopt -s cmdhist +export HISTCONTROL='erasedups:ignoredups:ignorespace' +export HISTSIZE='100000' +export HISTTIMEFORMAT='%F %T ' + + +################## +# Terminal setup # +################## + +# Disable CTRL-s / CTRL-q +stty -ixon + +# hostname:workingdir +PROMPT_COMMAND='echo -ne "\\033]0;$(hostname| cut -d. -f1):${PWD/$HOME/~}\\007"' + + +############# +# Fancy PS1 # +############# + +# Revision control status for git, hg, svn + +function find_up_exists { + local d="$PWD" + while [ -n "$d" ]; do + if [ -e "$d/$1" ]; then + return 0 + fi + d="${d%/*}" + done + return 1 +} + +[ -r /usr/share/git/completion/git-prompt.sh ] && source /usr/share/git/completion/git-prompt.sh +function my_git_ps1 { + find_up_exists .git || return + GIT_PS1_SHOWDIRTYSTATE=1 \ + GIT_PS1_SHOWUNTRACKEDFILES=1 \ + __git_ps1 ' (%s)' 2> /dev/null +} + +function my_hg_ps1 { + find_up_exists .hg || return + local status + status="$(hg status | cut -c1 | sort -u | tr -d ' \n')" + echo -n " ($status)" +} + +function my_svn_ps1 { + find_up_exists .svn || return + local status + status="$(svn status --ignore-externals 2> /dev/null | cut -c1 | sort -u | tr -d ' \n')" + [ -n "$status" ] && echo -n " ($s)" +} + +# Two line prompt +PS1='' +PS1="$PS1"'\[\033[01;31m\]\u@\h\[\033[00m\]:\[\033[01;34m\]\w\[\033[00m\]' +PS1="$PS1"'\[\033[01;36m\]$(my_git_ps1 ; my_hg_ps1 ; my_svn_ps1)\[\033[00m\]' + +if ! [[ "$TERM" =~ ^screen ]]; then + PS1="$PS1"'\n\$ ' else - PS1='\u@\h:\w\$ ' + # matches with shelltitle in .screenrc + PS1="$PS1"'\n\[\033k\033\\\]\$> ' fi -function DARKTERM { - unset COLORFGBG - DARK=1 && source ~/.bashrc + +################################# +# Display return codes on error # +################################# + +function print_exit_code { + _exit_msg="\\033[01;33mexit code: $?\\033[00m" + if [ -z "${BASH_SOURCE[1]}" ]; then + echo -e "$_exit_msg" + fi + unset _exit_msg } +trap print_exit_code ERR + + +############### +# Pager setup # +############### + +export PAGER='less' +export LESS='RS' + + +################ +# Editor setup # +################ + +if emacsclient --version &> /dev/null; then + export ALTERNATE_EDITOR='vim' + export EDITOR='emacsclient --tty' + + if [[ "$TERM" == screen* ]]; then + alias edit='emacsclient --tty' + else + alias edit='emacsclient --create-frame --no-wait' + fi +else + export EDITOR='vim' + alias edit='vim' +fi + + +########################## +# ls aliases and colours # +########################## + +# GNU ls colours +# shellcheck disable=SC2046 +eval $(TERM=xterm dircolors 2> /dev/null) + +# BSD ls colours +export LSCOLORS="ExFxCxDxBxEGEDABAGACAD" -# xterm titlebar displays current command -case "$TERM" in -xterm*|rxvt*) - HOSTNAME="$(hostname | cut -d '.' -f 1)" - CWD_WITHHOME='"$(echo "$PWD" | sed "s|^$HOME|~|")"' - PROMPT_COMMAND="echo -ne \"\033]0;${HOSTNAME}: ${CWD_WITHHOME}\007\"" - ;; -*) - ;; -esac - -# Useful aliases -alias ls='ls --color=auto' +# Lets find the ls +if ls --color=auto -v &> /dev/null; then + alias ls='ls --color=auto -v' +elif gls --color=auto -v &> /dev/null; then + alias ls='gls --color=auto -v' +elif ls -G &> /dev/null; then + alias ls='ls -G' +else + alias ls='ls -F' +fi alias ll='ls -hlF' alias la='ls -ha' alias l='ls -halF' -alias rm='rm -i' -alias less='less -R' -alias screen='TERM=xterm screen' -shopt -s checkwinsize +############## +# ps aliases # +############## -# Local customisations -[ -r ~/.bashrc_local ] && source ~/.bashrc_local +alias _psresources='ps -wAo pid,user,%cpu,%mem,stat,start,time,args' +if [ "$(uname)" = "Linux" ]; then + alias pscpu='_psresources --sort -%cpu|less -S' + alias psmem='_psresources --sort -%mem|less -S' + alias pstree='ps --forest -weo pid,user:16,args --sort start_time|less -S' + alias pstime='ps -wAo pid,user,lstart,args --sort start_time|less -S' +else + alias pscpu='_psresources -r|less -S' + alias psmem='_psresources -m|less -S' + alias pstime='ps -wAo pid,user,lstart,args|less -S' +fi + +################# +# Other aliases # +################# + +alias f='find . -iname' +if echo x | grep -q --color=auto x &> /dev/null; then + alias grep='grep --color=auto' +fi +alias rg='rg -p' +alias scp='scp -o ControlPath=none' +alias bc='bc -ql' +alias watch='watch -n1' +alias sudo='sudo ' # ability to use aliases with sudo +alias sudosu='sudo su -l -s /bin/bash' +alias py='PYTHONSTARTUP=~/.pythonrc.py python' +alias webshare='python3 -mhttp.server' + +if ! command -v pbcopy &> /dev/null; then + alias pbcopy='xsel --clipboard --input' + alias pbcopym='xsel --input' + alias pbpaste='xsel --clipboard --output' + alias pbpastem='xsel --output' +fi + +# man with coloured headings and a terminal title +function man { + echo -ne "\\033]0;man $*\\007" + + env \ + LESS_TERMCAP_md=$'\E[01;38;5;74m' \ + LESS_TERMCAP_me=$'\E[0m' \ + LESS_TERMCAP_us=$'\E[04;38;5;146m' \ + LESS_TERMCAP_ue=$'\E[0m' \ + man --encoding ascii "$@" +} + +# Creates the directory if it doesn't exist, and changes into it +function mcd { + # shellcheck disable=SC2164 + mkdir -p "$1" && cd "$1" +} + +# Sets the nice and ionice priorities for the current shell to the lowest values +function slowshell { + ionice -c 3 -p $$ + renice -n 19 -p $$ +} + +# SSH to an unknown host and print the new known_hosts entry +function ssh_new { + local new_known_hosts_file + new_known_hosts_file="$(mktemp)" + ssh -o UserKnownHostsFile="$new_known_hosts_file" "$@" echo 'Connection ok' + cat "$new_known_hosts_file" + rm -f "$new_known_hosts_file" +} + +# SSH without verifying host key +function ssh_unsafe { + ssh -o StrictHostKeyChecking=no -o UserKnownHostsFile=/dev/null "$@" +} +########### +# The end # +###########