From 15bc23ba85f714797f3496ad6f7460877f974253 Mon Sep 17 00:00:00 2001 From: sommerfeld Date: Fri, 17 Apr 2026 10:53:28 +0100 Subject: chore: delete obsolete shell config files MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Remove files made redundant by the zsh-only rewrite: - home/.profile (POSIX login shell — replaced by .zprofile) - home/.bashrc (bash interactive — no longer needed) - home/.bash_logout (bash logout — no longer needed) - home/.config/sh/envrc (shared env vars — merged into .zprofile) - home/.config/sh/aliases (shared aliases — merged into .zshrc) - home/.config/sh/shinit (POSIX interactive init — merged into .zshrc) The inputrc file is kept for readline-based tools (python REPL, etc.). --- home/.config/sh/aliases | 73 ------------------------------------------------- 1 file changed, 73 deletions(-) delete mode 100644 home/.config/sh/aliases (limited to 'home/.config/sh/aliases') diff --git a/home/.config/sh/aliases b/home/.config/sh/aliases deleted file mode 100644 index 7a0d696..0000000 --- a/home/.config/sh/aliases +++ /dev/null @@ -1,73 +0,0 @@ -#!/usr/bin/env sh - -alias l='lsd -l' -alias la='lsd -lA' -alias lt='lsd --tree' - -whichkey() { - xev | awk -F'[ )]+' '/^KeyPress/ { a[NR+2] } NR in a { printf "%-3s %s\n", $5, $8 }' -} - -alias sudo='doas' -alias sudoedit='doasedit' - -alias grep='grep --color=auto' -alias fgrep='fgrep --color=auto' -alias egrep='egrep --color=auto' -alias diff='diff --color=auto' -alias dmesg='dmesg --color=auto' -alias dm='dmesg --color=always | less -r' -alias ip="ip -color=auto" -alias lsip="ip -human -color=auto --brief address show" -alias ipa="ip -stats -details -human -color=auto address show" - -alias g='git' - -alias sys='systemctl' -alias ssys='doas systemctl' -alias sysu='systemctl --user' - -alias gimme='doas chown $USER:$(id -gn $USER)' -alias free='free -h' -alias ...='cd ../..' -alias ....='cd ../../..' -alias .....='cd ../../../..' -alias mkdir='mkdir -p' -alias du='du -h' -alias df='df -h' -alias pacdiff='doas pacdiff' -alias stow='stow -R --no-folding --adopt' - -alias pacopt='comm -13 <(pacman -Qqdt | sort) <(pacman -Qqdtt | sort)' - -alias ipecho='curl ipecho.net/plain' -alias curl='curlie' -alias xclip="xclip -selection clipboard -f" - -alias cpr='rsync --archive -hh --partial --info=stats1,progress2 --modify-window=1' -alias mvr='rsync --archive -hh --partial --info=stats1,progress2 --modify-window=1 --remove-source-files' -alias sub='subliminal download -l en' -alias ss='doas ss -tupnl' -alias c='clear' - -alias n='nvim' -alias ndiff='nvim -d' -alias nd='nvim -d' -alias nview='nvim -R' -alias nv='nvim -R' -alias ng='nvim +Neogit' - -alias ta='tmux new-session -A' -alias tas='tmux new-session -A -s' - -alias ncmake='cmake -G Ninja -DCMAKE_C_COMPILER=clang -DCMAKE_CXX_COMPILER=clang++ -DCMAKE_C_COMPILER_LAUNCHER=ccache -DCMAKE_CXX_COMPILER_LAUNCHER=ccache -DCMAKE_C_FLAGS="$DEV_CFLAGS" -DCMAKE_CXX_FLAGS="$DEV_CFLAGS" -DCMAKE_INSTALL_PREFIX=build/install -DCMAKE_BUILD_TYPE=Debug -DBUILD_SHARED_LIBS=ON -DCMAKE_EXPORT_COMPILE_COMMANDS=ON -B build' - -alias ircc='clang -S -emit-llvm -fno-discard-value-names -O0 -Xclang -disable-O0-optnone -o -' -alias irfc='flang -S -emit-llvm -O0 -o -' -alias astcc='clang -Xclang -ast-dump -fsyntax-only' -alias astfc='flang -fc1 -fdebug-dump-parse-tree' -alias symfc='flang -fc1 -fdebug-dump-symbols' - -alias gdb='gdb -ex start --args' -alias j='just' -alias copilot='gh copilot --yolo --autopilot --enable-all-github-mcp-tools --resume' -- cgit v1.2.3-70-g09d2