summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--sh/aliases1
-rw-r--r--sh/functions3
2 files changed, 4 insertions, 0 deletions
diff --git a/sh/aliases b/sh/aliases
index e3996bd..e33c3a9 100644
--- a/sh/aliases
+++ b/sh/aliases
@@ -35,6 +35,7 @@ alias v='nvim'
## Change utils
alias rm='rm -i'
alias cp='cp -i'
+alias srsync='rsync -KPUcrtvyz'
## git stuff
alias gs='git status'
diff --git a/sh/functions b/sh/functions
index 3c73fb7..44d8e4f 100644
--- a/sh/functions
+++ b/sh/functions
@@ -32,6 +32,9 @@ if [[ "$SHELL" =~ .*zsh$ ]]; then
if [[ $1 != *"veracrypt"* ]]; then
print -sr -- "${1%%$'\n'}"
fc -p
+ elif [[ $1 != *"cryptsetup"* ]]; then
+ print -sr -- "${1%%$'\n'}"
+ fc -p
else
return 1
fi