dotfiles/zsh/.zsh/aliases.zsh
2024-09-17 20:02:23 +02:00

16 lines
296 B
Bash

alias ls="ls --color"
alias swayimg="swayimg -w image -c info.show=no -c general.position=20\,20"
alias podman="sudo podman"
findfile () {
local search
if [ "$1" = "--update" ]; then
sudo updatedb
search=$2
else
search=$1
fi
locate "$PWD*$search*"
}