dotfiles/zsh/.zsh/aliases.zsh

16 lines
296 B
Bash
Raw Permalink Normal View History

2024-08-09 22:39:10 +02:00
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*"
}