From 0ebc32e30aceb4fc15c5e0b940a158c40837f061 Mon Sep 17 00:00:00 2001 From: David Tomaschik Date: Fri, 20 Feb 2026 15:18:10 -0800 Subject: [PATCH] Cleanup aliases --- dotfiles/aliases | 12 +--- dotfiles/config/fish/conf.d/aliases.fish | 76 ++++++++++++++---------- 2 files changed, 45 insertions(+), 43 deletions(-) diff --git a/dotfiles/aliases b/dotfiles/aliases index cd678ba..91104f5 100755 --- a/dotfiles/aliases +++ b/dotfiles/aliases @@ -1,16 +1,9 @@ # General aliases, should only be sourced in interactive shells - - +# Try to keep in sync with ~/.config/fish/conf.d/aliases.fish # Cryptsetup alias 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 alias tstamp="date '+%Y%m%d-%H%M%S'" @@ -20,8 +13,6 @@ alias mdcode="sed 's/^/ /'" # Intel format plz alias objdump="command objdump -M intel" - - # Drop caches for swap issues 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 alias gitroot="git rev-parse --show-toplevel" - # SSH without host key checking alias sshanon="ssh -oUserKnownHostsFile=/dev/null -oStrictHostKeyChecking=no" diff --git a/dotfiles/config/fish/conf.d/aliases.fish b/dotfiles/config/fish/conf.d/aliases.fish index 8a08930..3e2ef70 100644 --- a/dotfiles/config/fish/conf.d/aliases.fish +++ b/dotfiles/config/fish/conf.d/aliases.fish @@ -1,38 +1,50 @@ -# This script reads a bash-formatted alias file (~/.aliases) and creates -# equivalent fish aliases. This allows for sharing aliases between bash and fish. +# Cryptsetup alias +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 -set bash_alias_file ~/.aliases +# Timestamp in a machine-sortable form +alias tstamp "date '+%Y%m%d-%H%M%S'" -# Check if the alias file exists -if test -f "$bash_alias_file" - # 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 +# Prepare code for markdown +alias mdcode "sed 's/^/ /'" - # Check if the line defines an alias - if string match -q -r '^\s*alias\s+' "$line" - # Remove the 'alias ' prefix - set -l definition (string replace -r '^\s*alias\s+' '' "$line") - - # Split the definition into name and value at the first '=' - set -l parts (string split -m 1 '=' "$definition") - set -l alias_name $parts[1] - set -l alias_value $parts[2] - - # Remove leading/trailing quotes from the value - set -l alias_value (string trim -c "'"" "$alias_value") - - # Define the fish alias - alias $alias_name "$alias_value" - end - end < "$bash_alias_file" -end +# Intel format plz +alias objdump "command objdump -M intel" -# Specific aliases that are not in the bash file +# Drop caches for swap issues +alias drop_caches "echo 3 | sudo /usr/bin/tee /proc/sys/vm/drop_caches" + +# dump acpi temperature +alias gettemp 'printf "%02.2f\n" (cat /sys/class/thermal/thermal_zone0/temp)e-3' + +# get git working directory +alias gitroot "git rev-parse --show-toplevel" + +# 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 if not command -v bat >/dev/null 2>&1 @@ -62,4 +74,4 @@ if ls --help 2>&1 | grep -q -- '--color' alias ls 'ls --color=auto' # GNU `ls` else if test (uname) = "Darwin" alias ls 'ls -G' # macOS `ls` -end \ No newline at end of file +end