Cleanup aliases

This commit is contained in:
David Tomaschik
2026-02-20 15:18:10 -08:00
parent a0378fb583
commit 0ebc32e30a
2 changed files with 45 additions and 43 deletions

View File

@@ -1,16 +1,9 @@
# General aliases, should only be sourced in interactive shells # General aliases, should only be sourced in interactive shells
# Try to keep in sync with ~/.config/fish/conf.d/aliases.fish
# Cryptsetup alias # Cryptsetup alias
alias luksFormat='cryptsetup luksFormat --type=luks2 --pbkdf-memory=2560000 --pbkdf=argon2id -i 15000 -s 512 -h sha256 -c aes-xts-plain64' alias luksFormat='cryptsetup luksFormat --type=luks2 --pbkdf-memory=2560000 --pbkdf=argon2id -i 15000 -s 512 -h sha256 -c aes-xts-plain64'
# Easy upgrade
alias dist-upgrade="sudo sh -c 'apt-get update && apt-get -y dist-upgrade'"
# Timestamp in a machine-sortable form # Timestamp in a machine-sortable form
alias tstamp="date '+%Y%m%d-%H%M%S'" alias tstamp="date '+%Y%m%d-%H%M%S'"
@@ -20,8 +13,6 @@ alias mdcode="sed 's/^/ /'"
# Intel format plz # Intel format plz
alias objdump="command objdump -M intel" alias objdump="command objdump -M intel"
# Drop caches for swap issues # Drop caches for swap issues
alias drop_caches="echo 3 | sudo /usr/bin/tee /proc/sys/vm/drop_caches" alias drop_caches="echo 3 | sudo /usr/bin/tee /proc/sys/vm/drop_caches"
@@ -31,7 +22,6 @@ alias gettemp='printf "%02.2f\n" "$(cat /sys/class/thermal/thermal_zone0/temp)e-
# get git working directory # get git working directory
alias gitroot="git rev-parse --show-toplevel" alias gitroot="git rev-parse --show-toplevel"
# SSH without host key checking # SSH without host key checking
alias sshanon="ssh -oUserKnownHostsFile=/dev/null -oStrictHostKeyChecking=no" alias sshanon="ssh -oUserKnownHostsFile=/dev/null -oStrictHostKeyChecking=no"

View File

@@ -1,38 +1,50 @@
# This script reads a bash-formatted alias file (~/.aliases) and creates # Cryptsetup alias
# equivalent fish aliases. This allows for sharing aliases between bash and fish. alias luksFormat 'cryptsetup luksFormat --type=luks2 --pbkdf-memory=2560000 --pbkdf=argon2id -i 15000 -s 512 -h sha256 -c aes-xts-plain64'
# Path to the bash alias file # Timestamp in a machine-sortable form
set bash_alias_file ~/.aliases alias tstamp "date '+%Y%m%d-%H%M%S'"
# Check if the alias file exists # Prepare code for markdown
if test -f "$bash_alias_file" alias mdcode "sed 's/^/ /'"
# Read the file line by line
while read -l line
# Skip comments and empty lines
if string match -q -r '^\s*#' "$line" || test -z "$line"
continue
end
# Check if the line defines an alias # Intel format plz
if string match -q -r '^\s*alias\s+' "$line" alias objdump "command objdump -M intel"
# Remove the 'alias ' prefix
set -l definition (string replace -r '^\s*alias\s+' '' "$line")
# Split the definition into name and value at the first '=' # Drop caches for swap issues
set -l parts (string split -m 1 '=' "$definition") alias drop_caches "echo 3 | sudo /usr/bin/tee /proc/sys/vm/drop_caches"
set -l alias_name $parts[1]
set -l alias_value $parts[2]
# Remove leading/trailing quotes from the value # dump acpi temperature
set -l alias_value (string trim -c "'"" "$alias_value") alias gettemp 'printf "%02.2f\n" (cat /sys/class/thermal/thermal_zone0/temp)e-3'
# Define the fish alias # get git working directory
alias $alias_name "$alias_value" alias gitroot "git rev-parse --show-toplevel"
end
end < "$bash_alias_file"
end
# Specific aliases that are not in the bash file # SSH without host key checking
alias sshanon "ssh -oUserKnownHostsFile=/dev/null -oStrictHostKeyChecking=no"
# Straight to ipython
alias ipy "ipython3 --no-banner"
# Skip the header on bc
alias bc "command bc -q"
# Get a decently readable df
alias dfh "df -h -x tmpfs -x devtmpfs -x squashfs -x fuse -x efivarfs"
# Clear the GPG agent
alias clear-gpg-agent "echo RELOADAGENT | gpg-connect-agent"
# Battery details
alias bat-details 'upower -i (upower -e | grep battery)'
# Nvidia refresh rate
alias nvidia-refresh-rate 'nvidia-settings --display=:0 -q RefreshRate -t'
# Earthly ssh
alias earthly 'earthly --ssh-auth-sock ""'
# to clipboard
alias toclip 'xclip -selection clipboard'
# On some systems, bat is batcat # On some systems, bat is batcat
if not command -v bat >/dev/null 2>&1 if not command -v bat >/dev/null 2>&1