alias cl="clear" alias cp="cp -i" alias grep="grep --color=always" alias ls="ls --color=always" alias mkdir="mkdir -p" alias mv="mv -i" alias q="exit" alias rm="rm -i" alias u="update.sh" alias zgrep="zgrep --color=always" (( ${+commands[srm]} )) && alias srm="srm -i" (( ${+commands[tmux]} )) && alias tmux="tmux -2u" if (( ${+commands[exa]} )); then alias exa="exa -Fh --color=always --git --icons" alias t="exa -a --tree -I '.git'" alias tl="t -l" else alias t="tree -aCI '.git'" fi if [[ $(uname -o) == "Android" ]]; then alias l="exa -al" alias la="exa -l" alias ll="exa -aagl" elif [[ $(uname -o) == "GNU/Linux" ]]; then if [[ $(lsb_release -si) == "Artix" ]]; then alias code="codium --enable-features=UseOzonePlatform --ozone-platform=wayland" alias poweroff="doas poweroff" alias reboot="doas reboot" fi if [[ $(lsb_release -si) == "Ubuntu" ]]; then alias l="ls -Ahl" alias la="ls -hl" alias ll="ls -aFhl" else alias btctl="bluetoothctl" alias l="lsd -Ahl --color=always" alias la="lsd -hl --color=always" alias ll="lsd -ahlF --color=always" alias wl-copy="wl-copy -n" alias x="exa -al" fi fi