Disk aliases

This commit is contained in:
theanonymousexyz 2022-04-16 17:31:00 +02:00
parent 2a5379a4d7
commit 3e00aa03f8
No known key found for this signature in database
GPG Key ID: 35EE09F5481049BB
1 changed files with 4 additions and 0 deletions

View File

@ -19,6 +19,10 @@ alias q="exit 0"
alias zgrep="zgrep --color=always"
(( ${+commands[tmux]} )) && alias tmux="tmux -2u"
(( ${+commands[dotnet]} )) && alias dnup="dotnet tool list --global | tail -n +3 | awk '{print \$1}' | xargs -l dotnet tool update --global"
alias mount="udisksctl mount -b"
alias unmount="udisksctl unmount -b"
alias unlock="udisksctl unlock -b"
alias lock="udisksctl lock -b"
if (( ${+commands[exa]} )); then
alias exa="exa -Fh --color=always --git --icons"