diff --git a/scripts/zshrc.sh b/scripts/zshrc.sh index 279d697..f7fbaa8 100755 --- a/scripts/zshrc.sh +++ b/scripts/zshrc.sh @@ -132,6 +132,15 @@ has() { command -v "$1" &> /dev/null } +# Compress 7z zstd +compress-7zst() { + if [ -z "$1" ]; then + echo "Usage: compress-7zst " + return + fi + 7z a -m0=zstd -mx17 -mmt35 "$1" "$2" +} + # Install using system package manager install-package() { if has pacman; then