1
0
Fork 0
mirror of https://gitlab.com/mlunax/dotfiles.git synced 2025-04-19 08:45:36 +00:00

fix alias doas

This commit is contained in:
Luna 2023-10-26 14:29:30 +02:00
parent bd84e17e97
commit 660181d318

View file

@ -20,8 +20,7 @@ alias \
gres='git restore' \ gres='git restore' \
gs='git status' \ gs='git status' \
gst='git stash' \ gst='git stash' \
hx='helix' \ hx='helix'
sudo='doas'
alias history='fc -l 0' alias history='fc -l 0'
alias ytdlp='yt-dlp `xclip -o`' alias ytdlp='yt-dlp `xclip -o`'
@ -29,3 +28,7 @@ alias 'sudo -i'='sudo su -'
alias 'cls'='clear' alias 'cls'='clear'
alias 'rsyncA'='rsync -azzP' alias 'rsyncA'='rsync -azzP'
alias wgetx='wget `xclip -o`' alias wgetx='wget `xclip -o`'
if iscmd doas; then
alias sudo='doas'
fi