dotfiles/.config/zsh/.zaliases

20 lines
568 B
Text
Raw Normal View History

2023-09-26 17:12:28 +02:00
if grep -q '^NAME="Artix Linux"$' /etc/os-release; then
alias reboot="loginctl reboot"
alias poweroff="loginctl poweroff"
2023-09-26 17:12:28 +02:00
fi
alias ssh="TERM=xterm-256color ssh"
#alias ssh="TERM=xterm-256color kitty +kitten ssh"
alias ff="fastfetch"
alias ip="ip --color=auto"
2023-10-27 15:28:30 +02:00
alias hx="helix"
2023-11-21 16:15:50 +01:00
alias sc="shellcheck -x -s bash"
2024-08-07 23:41:13 +02:00
alias sctl="systemctl"
2024-08-07 23:43:22 +02:00
alias sudo="sudo "
2023-09-26 17:12:28 +02:00
2023-10-23 10:15:51 +02:00
alias wget='wget --hsts-file="$XDG_CACHE_HOME/wget-hsts"'
2024-03-06 16:50:14 +01:00
# git init --bare $HOME/.dotfiles
2023-09-26 17:12:28 +02:00
# cfg config --local status.showUntrackedFiles no
alias cfg="/usr/bin/git --git-dir=$HOME/.dotfiles --work-tree=$HOME"