workstation/roles/home-cli/files/bashrc

380 lines
8.9 KiB
Bash
Raw Normal View History

2021-03-11 22:49:39 +00:00
#!/bin/bash
2021-02-20 22:59:54 +00:00
export ACP_BASHRC=1
2022-08-15 10:35:34 +00:00
if [ -d /var/acp ]
then
export ACP=/var/acp
else
export ACP="$HOME/data"
fi
2022-08-18 15:37:57 +00:00
# Set up XDG variables. See:
# https://specifications.freedesktop.org/basedir-spec/basedir-spec-latest.html
export XDG_DATA_DIRS=${XDG_DATA_DIRS:-/usr/local/share:/usr/share}
export XDG_CONFIG_DIRS=${XDG_CONFIG_DIRS:-/etc/xdg}
export XDG_DATA_HOME="${XDG_DATA_HOME:-$HOME/.local/share}"
export XDG_CACHE_HOME="${XDG_CACHE_HOME:-$HOME/.cache}"
export XDG_CONFIG_HOME="${XDG_CONFIG_HOME:-$HOME/.config}"
export XDG_STATE_HOME="${XDG_STATE_HOME:-$HOME/.local/state}"
if [ ! -d "$XDG_DATA_HOME" ] ; then install -d -m 0700 "$XDG_DATA_HOME" ; fi
if [ ! -d "$XDG_CACHE_HOME" ] ; then install -d -m 0700 "$XDG_CACHE_HOME" ; fi
if [ ! -d "$XDG_CONFIG_HOME" ] ; then install -d -m 0700 "$XDG_CONFIG_HOME" ; fi
if [ ! -d "$XDG_STATE_HOME" ] ; then install -d -m 0700 "$XDG_STATE_HOME" ; fi
2022-08-18 15:37:57 +00:00
if [ ! -d "$HOME/.local/bin" ] ; then install -d -m 0700 "$HOME/.local/bin" ; fi
2022-08-18 15:36:05 +00:00
if [ -n "$BASH_VERSION" ]
2021-05-02 21:17:58 +00:00
then
2022-08-18 15:36:05 +00:00
if [ -f /etc/bashrc ]
then
. /etc/bashrc
fi
if [ -f /usr/share/bash-completion/bash_completion ]
then
. /usr/share/bash-completion/bash_completion
elif [ -f /etc/bash_completion ]
then
. /etc/bash_completion
fi
2021-05-02 21:12:59 +00:00
fi
2022-08-18 16:04:19 +00:00
if [ -n "$ZSH_VERSION" ]
then
if [ -f /etc/zshrc ]
then
. /etc/zshrc
fi
fi
2021-02-20 22:59:54 +00:00
_acp_add_path () {
if [ -n "$1" ] && [ -d "$1" ]
2021-05-02 21:17:58 +00:00
then
case ":$PATH:" in
*:"$1":*)
return
;;
*)
PATH="$1:$PATH"
export PATH
return
;;
esac
2021-05-02 21:17:58 +00:00
fi
2021-02-20 22:59:54 +00:00
}
2022-08-09 11:23:02 +00:00
# Last in the list means first in the path.
2022-03-06 16:10:55 +00:00
for dir in "$HOME/.local/bin" \
2021-05-02 21:17:58 +00:00
"$HOME/.cargo/bin" \
2022-08-18 15:37:57 +00:00
"$XDG_DATA_HOME/gem/ruby/bin" \
"$XDG_DATA_HOME/flatpak/exports/bin" \
2022-08-16 08:38:18 +00:00
/opt/local/bin \
2022-08-16 08:40:22 +00:00
/opt/local/sbin \
2022-07-17 21:56:28 +00:00
/var/lib/flatpak/exports/bin \
2021-11-14 16:34:02 +00:00
/usr/local/bin \
2021-05-02 21:17:58 +00:00
/usr/local/sbin \
2021-11-14 16:34:02 +00:00
/usr/bin \
/usr/sbin
2021-02-20 22:59:54 +00:00
do
2021-05-02 21:17:58 +00:00
_acp_add_path "$dir"
2021-02-20 22:59:54 +00:00
done
umask 0022
# Locale and language.
## Clear the existing locale settings and set options I always want.
export TIME_STYLE=long-iso # Used by GNU 'ls'.
2022-07-01 16:01:26 +00:00
export TZ=Europe/London # Can override this elsewhere if needed.
2021-05-13 12:44:41 +00:00
if [ -f /etc/locale.conf ]
then
. /etc/locale.conf
fi
2022-08-18 15:40:46 +00:00
if [ -f "$XDG_CONFIG_HOME/locale.conf" ]
2021-05-13 12:44:41 +00:00
then
2022-08-18 15:40:46 +00:00
. "$XDG_CONFIG_HOME/locale.conf"
2021-05-13 12:44:41 +00:00
fi
2021-02-20 22:59:54 +00:00
# Other exports.
export ANSIBLE_NOCOWS=1
export EDITOR=vi
export HISTCONTROL=ignorespace:ignoredups
2021-02-21 15:06:35 +00:00
export PAPERSIZE=a4
2021-02-20 22:59:54 +00:00
export POWERSHELL_TELEMETRY_OPTOUT=1
export PYTHONWARNINGS=ignore::UserWarning
if [ "$(uname -s)" = Darwin ]
then
export BASH_SILENCE_DEPRECATION_WARNING=1
fi
2022-02-10 12:47:48 +00:00
# Override this in ~/.config/bashrc or ~/.ssh/config.
export LIBVIRT_DEFAULT_URI="qemu+ssh://vmhost/system"
2021-03-16 08:26:44 +00:00
if test -x /usr/bin/tty
then
GPG_TTY=$(tty)
export GPG_TTY
2021-02-20 22:59:54 +00:00
fi
2022-07-17 21:53:12 +00:00
# Set up Vi/Vim.
if command -v vim > /dev/null
2022-02-20 19:32:49 +00:00
then
2022-07-17 21:53:12 +00:00
export EDITOR="vim -f"
alias vi=vim
2022-07-17 21:07:29 +00:00
else
export EDITOR=vi
fi
2022-02-20 19:32:49 +00:00
if [ "${XDG_CURRENT_DESKTOP:-unknown}" = GNOME ]
2022-03-04 19:27:20 +00:00
then
export QT_FONT_DPI=72
fi
2022-08-18 15:36:05 +00:00
if [ -n "$BASH_VERSION" ]
then
2022-08-18 16:11:43 +00:00
set -o emacs
set -o noclobber
2022-08-18 15:36:05 +00:00
shopt -s histappend
bind '"\e[1;5C": forward-word'
bind '"\e[1;5D": backward-word'
bind '"\e[A": history-search-backward'
bind '"\e[B": history-search-forward'
bind 'set bell-style none'
bind 'set completion-ignore-case on'
bind 'set enable-bracketed-paste off'
2022-08-19 08:31:18 +00:00
fi
if [ -n "$ZSH_VERSION" ]
2022-08-18 07:54:37 +00:00
then
2022-08-19 08:31:18 +00:00
function history-search-end {
#
# This implements functions like history-beginning-search-{back,for}ward,
# but takes the cursor to the end of the line after moving in the
# history, like history-search-{back,for}ward. To use them:
# zle -N history-beginning-search-backward-end history-search-end
# zle -N history-beginning-search-forward-end history-search-end
# bindkey '...' history-beginning-search-backward-end
# bindkey '...' history-beginning-search-forward-end
integer cursor=$CURSOR mark=$MARK
if [[ $LASTWIDGET = history-beginning-search-*-end ]]; then
# Last widget called set $MARK.
CURSOR=$MARK
else
MARK=$CURSOR
fi
if zle .${WIDGET%-end}; then
# success, go to end of line
zle .end-of-line
else
# failure, restore position
CURSOR=$cursor
MARK=$mark
return 1
fi
}
zle -N history-beginning-search-backward-end history-search-end
zle -N history-beginning-search-forward-end history-search-end
2022-08-18 16:11:43 +00:00
bindkey -e
2022-08-19 08:13:39 +00:00
bindkey "^[[1;5C" forward-word
bindkey "^[[1;5D" backward-word
bindkey "^[[A" history-beginning-search-backward-end
bindkey "^[[B" history-beginning-search-forward-end
2022-08-19 08:31:18 +00:00
bindkey "^[OA" history-beginning-search-backward-end
bindkey "^[OB" history-beginning-search-forward-end
2022-08-18 07:54:37 +00:00
fi
2022-08-18 15:36:05 +00:00
# Set the prompt for various shells. The prompt should look like "user@host$ "
# or similar, except for the fallback of "$ " for anything it can't detect.
if [ -n "$BASH_VERSION" ]
then
export PS1="\[\033[01m\]\u@\h\\$\[\033[00m\] "
elif [ -n "$ZSH_VERSION" ]
2022-08-18 07:44:25 +00:00
then
export PS1="%B%n@%m%#%b "
2022-08-18 15:36:05 +00:00
else
export PS1="$ "
2022-08-18 07:44:25 +00:00
fi
if [ "$(id -u)" -ne 0 ] && [ -x /usr/bin/dnf ]
2021-03-16 08:26:44 +00:00
then
2022-01-11 21:55:41 +00:00
alias dnf="dnf --cacheonly --nogpgcheck"
2021-02-20 22:59:54 +00:00
fi
alias 7zencrypt="7z a -t7z -p -mhe"
alias alu="apt list --upgradable"
alias asdo="apt source --download-only"
alias aurmake="makepkg -irs"
alias f=fossil
alias ip="ip -c"
2022-03-01 10:10:54 +00:00
alias isocal="cal --iso --reform=iso --monday --week"
2022-01-11 21:47:19 +00:00
alias la="ls -a"
alias ll="ls -l"
2022-01-11 21:42:43 +00:00
alias ls="command ls -F"
2021-02-20 22:59:54 +00:00
alias now="date +%Y%m%dT%H%M%S%z"
alias nowu="date -u +%Y%m%dT%H%M%SZ"
alias streamenc="openssl aes-256-cbc -pbkdf2 -in - -out - -e"
alias streamdec="openssl aes-256-cbc -pbkdf2 -in - -out - -d"
alias wgr=wordgrinder
alias ytmp3="youtube-dl -q -x --audio-format=mp3"
alias zlu="zypper list-updates"
2022-07-13 20:30:07 +00:00
# Language aliases.
alias en="LANG=en_GB.UTF-8"
alias fr="LANG=fr_FR.UTF-8"
2022-02-23 10:19:18 +00:00
# Alias dig to drill if dig is not installed.
2022-08-18 15:37:57 +00:00
if [ -x /usr/bin/drill ]
2022-02-23 10:19:18 +00:00
then
alias dig=drill
fi
2021-07-02 21:23:10 +00:00
# Set up Go.
2022-08-15 10:35:34 +00:00
if [ -x "$ACP/opt/go/bin/go" ] || [ -x /usr/bin/go ] || [ -x /usr/local/bin/go ]
2021-02-20 22:59:54 +00:00
then
2021-07-02 22:12:25 +00:00
export GOPROXY=https://proxy.golang.org
2022-08-18 15:37:57 +00:00
export GOPATH="$XDG_DATA_HOME/go"
2021-05-02 21:17:58 +00:00
if [ ! -d "$GOPATH" ]
then
mkdir -p "$GOPATH/bin"
mkdir -p "$GOPATH/pkg"
mkdir -p "$GOPATH/src"
fi
2022-08-15 10:35:34 +00:00
if [ -x "$ACP/opt/go/bin/go" ]
2021-05-02 21:17:58 +00:00
then
2022-08-15 10:35:34 +00:00
export GOROOT="$ACP/opt/go"
2021-05-02 21:17:58 +00:00
_acp_add_path "$GOROOT/bin"
fi
2021-07-02 22:12:25 +00:00
_acp_add_path "$GOPATH/bin"
2021-02-20 22:59:54 +00:00
fi
alias prun='podman run --rm --interactive --tty --security-opt label=disable --volume "$HOME":"$HOME" --volume "$XDG_RUNTIME_DIR":"$XDG_RUNTIME_DIR" --env XDG_RUNTIME_DIR="$XDG_RUNTIME_DIR" --env XDG_SESSION_TYPE=wayland --ipc host'
alias pruncerts='prun --volume /etc/pki/ca-trust:/etc/pki/ca-trust:ro --volume /etc/ssl/certs:/etc/ssl/certs:ro'
2021-02-20 22:59:54 +00:00
# Desktop files (used by desktop environments within both X11 and Wayland) are
# looked for in XDG_DATA_DIRS; make sure it includes the relevant directory for
# snappy applications' desktop files.
_snap_xdg_path=/var/lib/snapd/desktop
if [ -n "${XDG_DATA_DIRS##*${_snap_xdg_path}}" ] && [ -n "${XDG_DATA_DIRS##*${_snap_xdg_path}:*}" ]
then
2021-05-02 21:17:58 +00:00
export XDG_DATA_DIRS="${XDG_DATA_DIRS}:${_snap_xdg_path}"
2021-02-20 22:59:54 +00:00
fi
unset _snap_xdg_path
mkcd () {
2021-05-02 21:17:58 +00:00
if [ $# -ne 1 ]
then
echo "mkcd: incorrect arguments (one directory required)." >&2
return 1
else
mkdir -p "$1"
cd "$1" || return
2021-05-02 21:17:58 +00:00
fi
2021-02-20 22:59:54 +00:00
}
linapm () {
cat /sys/class/power_supply/BAT0/status
cat /sys/class/power_supply/BAT0/capacity
2021-02-20 22:59:54 +00:00
}
xa () {
2021-05-02 21:17:58 +00:00
out=$(xrandr --listactivemonitors | awk 'NR!=1{print " "$NF" "}')
for monitor in $out
2021-05-02 21:17:58 +00:00
do
m=$(echo "$monitor" | sed 's/ //g')
xrandr --output "$m" --auto
done
2021-02-20 22:59:54 +00:00
}
emacsro () {
2021-05-02 21:17:58 +00:00
emacs "$1" -f view-mode
2021-02-20 22:59:54 +00:00
}
tm () {
if tmux list-sessions > /dev/null 2>&1
2021-05-02 21:17:58 +00:00
then
2021-11-19 12:45:38 +00:00
tmux attach-session
2021-05-02 21:17:58 +00:00
else
2021-11-19 12:45:38 +00:00
tmux new-session
2021-05-02 21:17:58 +00:00
fi
2021-02-20 22:59:54 +00:00
}
if [ -x /usr/bin/yum ] && [ ! -x /usr/bin/dnf ]
then
2021-05-02 21:17:58 +00:00
alias dnf=yum
2021-02-20 22:59:54 +00:00
fi
2021-03-18 10:02:00 +00:00
if [ -S "$SSH_AUTH_SOCK" ] \
2021-05-02 21:17:58 +00:00
&& [ -r "$HOME/.ssh/id_ed25519" ] \
&& [ -r "$HOME/.ssh/id_ed25519.pub" ] \
&& [ "$(ssh-add -l | grep -c "$(ssh-keygen -l -f "$HOME/.ssh/id_ed25519.pub")")" = 0 ]
2021-02-20 22:59:54 +00:00
then
2021-05-02 21:17:58 +00:00
ssh-add "$HOME/.ssh/id_ed25519"
2021-02-20 22:59:54 +00:00
fi
if [ -r "${XDG_CONFIG_HOME:-$HOME/.config}/bashrc.local" ]
2021-02-20 22:59:54 +00:00
then
. "${XDG_CONFIG_HOME:-$HOME/.config}/bashrc.local"
fi
usermotd () {
2022-08-18 07:49:32 +00:00
if [ -n "$_acp_motd_shown" ]
then
return 1
2022-08-18 07:49:32 +00:00
fi
export _acp_motd_shown=1
printf "\033[7m"; uname -sr; printf "\033[0m"
if [ -r /etc/os-release ]
then
echo " $(. /etc/os-release; echo "$NAME" "$VERSION")"
fi
if [ "$(uname -s)" = "Darwin" ]
2022-08-15 11:10:34 +00:00
then
echo " $(sw_vers -productName) $(sw_vers -productVersion)"
fi
uptime
echo "LANG=$LANG"
2022-07-01 16:01:26 +00:00
if [ -n "$TZ" ]
then
echo "TZ=$TZ"
elif [ -x /usr/bin/timedatectl ] && [ "x$(systemctl is-system-running)" != "xoffline" ]
2021-11-16 20:56:36 +00:00
then
timedatectl show --property=Timezone | sed 's/Timezone=/TZ=/'
fi
}
2022-02-10 08:40:56 +00:00
simpletls () {
# Create a self-signed certificate with:
# openssl req -new -x509 \
2022-08-15 10:35:34 +00:00
# -keyout $ACP/openssl/$(hostname)-key.pem \
# -out $ACP/openssl/$(hostname-cert.pem
if [ "$1" = "-l" ]
2022-02-10 08:40:56 +00:00
then
openssl s_server -cert "$ACP/openssl/$(hostname)-cert.pem" -key "$HOME/data/openssl/$(hostname)-key.pem" -tls1_3 -port "$2"
2022-02-10 08:40:56 +00:00
else
openssl s_client -CAfile "$ACP/openssl/$1-cert.pem" -tls1_3 -connect "$1":"$2"
2022-02-10 08:40:56 +00:00
fi
}
2022-03-31 13:24:44 +00:00
tlscheck () {
if [ -z "$1" ]
2022-03-31 13:24:44 +00:00
then
echo "Usage: tlscheck hostname:port" >&2
else
openssl s_client -connect "$1" </dev/null | openssl x509 -text
2022-03-31 13:24:44 +00:00
fi
}
case "$-" in
*i*)
# Shell is interactive
usermotd
;;
*)
;;
esac