# Evan Pratten's Shell RC file # # This file is designed to work in *both* ZSH and Bash. # This way, I can just drop this on a remote machine if needed # without bringing the entirety of ewconfig along. # # That being said, if you are reading this on a machine I've done that on, you # might want to check out the main repository for more information about what # you are looking at: https://github.com/ewpratten/ewconfig # # This file has controlled my shell experience since 2015-ish, and originally targeted crosh. # Since then, I've adapted things to work in Bash and ZSH, and on a variety of systems that arent ChromeOS. # Firstly, if this machine has a copy of ewconfig, keep track of its location [[ -d "$HOME/.config/ewconfig" ]] && export EWCONFIG_ROOT="$HOME/.config/ewconfig" # Put ZSH into "emacs mode" to fix macos keybinds [[ -z "$ZSH_VERSION" ]] && bindkey -e # Configure default binary and library paths export GOPATH="$HOME/go" export PATH="$EWCONFIG_ROOT/scripts:$EWCONFIG_ROOT/rust-bin:$HOME/bin:$HOME/.local/bin:$PATH" export LD_LIBRARY_PATH="/usr/local/lib:/usr/local/lib64:$LD_LIBRARY_PATH" [[ -s "$GOPATH/bin" ]] && export PATH="$GOPATH/bin:$PATH" [[ -s "$HOME/.docker/bin" ]] && export PATH="$HOME/.docker/bin" [[ -f "$EWCONFIG_ROOT/configs/python/python_startup.py" ]] && export PYTHONSTARTUP="$EWCONFIG_ROOT/configs/python/python_startup.py" # Display operating system and architecture information echo -e "\033[0;32mPlatform:\033[0m $(uname -s) $(uname -r) $(uname -p)" # Displaying uptime is a little more complicated because only some systems support `uptime -p`. # To get around this, we can fall back to using `sed` to get a rough estimate if needed. if [ -x "$(command -v uptime)" ]; then if [ "$(uptime -p 2>/dev/null)" ]; then echo -e "\033[0;32mUptime:\033[0m $(uptime -p)" else echo -e "\033[0;32mUptime:\033[0m $(uptime | awk '{print $3 " " $4}' | sed 's/,//g')" fi fi # Get the binary name of the current shell SHELL_NAME=$(basename $SHELL) [ -n "$ZSH_VERSION" ] && SHELL_NAME="zsh" [ -n "$BASH_VERSION" ] && SHELL_NAME="bash" # If a shell specifier is set, wrap it in brackets # Don't show ZSH unless EWP_SHELL_TYPE is also set if [ -n "$EWP_SHELL_TYPE" ]; then SHELL_SPECIFIER="($EWP_SHELL_TYPE $SHELL_NAME) " else [[ -z "$ZSH_VERSION" ]] && SHELL_SPECIFIER="($SHELL_NAME) " fi # Determine the hostname color based on the current session info HOST_COLOR=$'\033[0;32m' # Green [[ -n "$SSH_CLIENT" ]] && HOST_COLOR=$'\033[0;33m' # Yellow [[ $(id -u) -eq 0 ]] && HOST_COLOR=$'\033[0;31m' # Red # Set the prompt to display basic info about this session. PS1="\[\033[0m\]${SHELL_SPECIFIER}\[${HOST_COLOR}\]\u@\h \[\033[0;36m\]\w \$ \[\033[0m\]" if [ -n "$ZSH_VERSION" ]; then PROMPT=$'%{\033[0m%}'"${SHELL_SPECIFIER}%{${HOST_COLOR}%}"$'%n@%m %{\033[0;36m%}%~ \$ %{\033[0m%}' fi # Additionally, add some extra info to the right of the prompt in zsh if [ -n "$ZSH_VERSION" ]; then # Configure the vcs_info plugin to show branch info (only if we aren't in ISH on iPadOS) if [ $(uname -r | grep -c "\-ish$") -eq 0 ]; then autoload -Uz vcs_info zstyle ':vcs_info:*' actionformats '%F{244}[%F{2}%b%F{3}|%F{1}%a%F{244}]%f ' zstyle ':vcs_info:*' formats '%F{244}[%F{2}%b%F{244}]%f ' zstyle ':vcs_info:*' enable git vcs_info_wrapper() { vcs_info if [ -n "$vcs_info_msg_0_" ]; then echo "%{$fg[grey]%}${vcs_info_msg_0_}%{$reset_color%}$del" fi } else vcs_info_wrapper() { echo "" } fi setopt prompt_subst export RPROMPT=$'%T $(vcs_info_wrapper)%?' fi # Set my preferred editor in order of preference if found [[ -x "$(command -v nano)" ]] && export EDITOR="nano" [[ -x "$(command -v vi)" ]] && export EDITOR="vi" [[ -x "$(command -v vim)" ]] && export EDITOR="vim" [[ -x "$(command -v nvim)" ]] && export EDITOR="nvim" # If we have neovim, use it as the manpage viewer if type -p nvim > /dev/null; then export MANPAGER="nvim +Man!" export MANWIDTH=80 fi # If ls can output color, enable it [[ -x "$(command -v dircolors)" ]] && eval "$(dircolors -b)" # Basic aliases alias ll="ls -l" alias la="ls -a" alias :q=exit alias :wq=exit alias cls=clear alias snvim="sudoedit" alias genuuid="python -c 'import uuid; print(uuid.uuid4())'" alias nvim-tmp="$EDITOR $(mktemp)" alias vim-tmp="$EDITOR $(mktemp)" # If this is macos, alias `mtr` to `sudo mtr` (if mtr exists) [[ $(uname -s) == "Darwin" ]] && [[ -x "$(command -v mtr)" ]] && alias mtr="sudo mtr" # Some aliases only make sense if their parent command exists [[ -x "$(command -v wg)" ]] && alias wg-easykeys="wg genkey | tee >(wg pubkey)" [[ -x "$(command -v systemd-resolve)" ]] && alias flush-dns="sudo systemd-resolve --flush-caches" [[ -x "$(command -v ykman)" ]] && alias yk-totp="ykman oath accounts code" [[ -x "$(command -v ufw)" ]] && alias ufw-status="sudo ufw status numbered" [[ -x "$(command -v xclip)" ]] && alias clipboard="xclip -selection clipboard" # "Magic" reload commands alias ewp-reload-shell-rc="source ~/.${SHELL_NAME}rc" alias zshreload=ewp-reload-shell-rc alias bashreload=ewp-reload-shell-rc # A few functions that keep me sane mkcd() { if [ $# != 1 ]; then echo "Usage: mkcd