workstation/roles/home-cli/files/bashrc

246 lines
5.3 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
2021-05-02 21:17:58 +00:00
if [ -f /etc/bashrc ]
then
. /etc/bashrc
fi
2021-02-20 22:59:54 +00:00
if [ -f /usr/share/bash-completion/bash_completion ]
then
2021-05-02 21:17:58 +00:00
. /usr/share/bash-completion/bash_completion
2021-02-20 22:59:54 +00:00
elif [ -f /etc/bash_completion ]
then
2021-05-02 21:17:58 +00:00
. /etc/bash_completion
2021-02-20 22:59:54 +00:00
fi
2021-05-02 21:12:59 +00:00
if [ -f /usr/share/bash-completion/completions/quilt ]
then
2021-05-02 21:17:58 +00:00
. /usr/share/bash-completion/completions/quilt
complete -F _quilt_completion -o filenames dquilt
2021-05-02 21:12:59 +00:00
fi
2021-02-20 22:59:54 +00:00
_acp_add_path () {
2021-06-18 20:36:41 +00:00
if ! [[ ":$PATH:" =~ ":$1:" ]] && test -d "$1"
2021-05-02 21:17:58 +00:00
then
PATH="$1:$PATH"
fi
export PATH
2021-02-20 22:59:54 +00:00
}
2021-06-18 20:36:41 +00:00
for dir in "$HOME/bin" \
2021-05-02 21:17:58 +00:00
"$HOME/.cargo/bin" \
"$HOME/opt/centos-git-common" \
2021-11-10 16:33:19 +00:00
"${XDG_DATA_HOME:-$HOME/.local/share}/gem/ruby/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
set -o emacs
set -o noclobber
# Locale and language.
## Clear the existing locale settings and set options I always want.
export TIME_STYLE=long-iso # Used by GNU 'ls'.
2021-05-13 12:44:41 +00:00
if [ -f /etc/locale.conf ]
then
. /etc/locale.conf
fi
if [ -f "${XDG_CONFIG_DIR:-$HOME/.config}/locale.conf" ]
2021-05-13 12:44:41 +00:00
then
. "${XDG_CONFIG_DIR:-$HOME/.config}/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
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
2021-05-02 21:17:58 +00:00
export GPG_TTY=$(tty)
2021-02-20 22:59:54 +00:00
fi
2022-02-20 19:32:49 +00:00
if test -x /usr/bin/vim
then
export EDITOR="/usr/bin/vim -f"
fi
2021-02-20 22:59:54 +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'
2022-01-25 14:18:39 +00:00
export PS1="\[\033[01m\]\u@\h>\[\033[00m\] "
2021-11-19 12:23:51 +00:00
if test $(id -u) -ne 0 && test -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"
2022-02-13 17:58:17 +00:00
alias caliso="cal --iso --reform=iso --monday --week"
2021-03-16 08:26:44 +00:00
alias dquilt="quilt --quiltrc=\"${HOME}/.quiltrc-dpkg\""
2021-02-20 22:59:54 +00:00
alias f=fossil
alias ip="ip -c"
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"
# Alias vi to vim if it is installed.
if [ -x /usr/bin/vim ]
then
2021-05-02 21:17:58 +00:00
alias vi=vim
2021-02-20 22:59:54 +00:00
fi
2021-07-02 21:23:10 +00:00
# Set up Go.
2021-02-20 22:59:54 +00:00
if [ -x "$HOME/opt/go/bin/go" ] || [ -x /usr/bin/go ] || [ -x /usr/local/bin/go ]
then
2021-07-02 22:12:25 +00:00
export GOPROXY=https://proxy.golang.org
export GOPATH="${XDG_DATA_HOME:-$HOME/.local/share}/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
if [ -x "$HOME/opt/go/bin/go" ]
then
export GOROOT="$HOME/opt/go"
_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
2022-01-11 21:55:41 +00:00
# Useful aliases for Podman.
2022-01-11 22:28:09 +00:00
alias prun="podman run --rm --interactive --tty"
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"
fi
2021-02-20 22:59:54 +00:00
}
termtitle () {
2021-05-02 21:17:58 +00:00
echo -en "\033]0;$1\007"
2021-02-20 22:59:54 +00:00
}
linapm () {
2021-05-02 21:17:58 +00:00
cat /sys/class/power_supply/BAT0/{status,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"
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 () {
2021-12-30 19:29:43 +00:00
if tmux list-sessions 2>&1 1>/dev/null
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 "$(ssh-keygen -l -f "$HOME/.ssh/id_ed25519.pub")" | wc -l) = 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 () {
printf "\033[7m"; uname -sr; printf "\033[0m"
if [ -r /etc/os-release ]
then
echo " $(. /etc/os-release; echo $NAME $VERSION)"
fi
uptime
echo "LANG=$LANG"
2021-12-07 10:53:34 +00:00
if [ -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 \
# -keyout $HOME/data/openssl/$(hostname)-key.pem \
# -out $HOME/data/openssl/$(hostname-cert.pem
if [ "x$1" == "x-l" ]
then
openssl s_server -cert $HOME/data/openssl/$(hostname)-cert.pem -key ~/data/openssl/$(hostname)-key.pem -tls1_3 -port $2
else
openssl s_client -CAfile $HOME/data/openssl/$1-cert.pem -tls1_3 -connect $1:$2
fi
}
case "$-" in
*i*)
# Shell is interactive
usermotd
;;
*)
;;
esac