From 4c0bb990abd0e2a8be8acb5e23dce409d531d865 Mon Sep 17 00:00:00 2001 From: Alicia Sykes Date: Fri, 14 Apr 2023 19:51:10 +0100 Subject: [PATCH 1/3] Adds Borg and Vorta for data backups --- scripts/installs/Brewfile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/scripts/installs/Brewfile b/scripts/installs/Brewfile index a7fcd0a..b4539d1 100644 --- a/scripts/installs/Brewfile +++ b/scripts/installs/Brewfile @@ -155,8 +155,9 @@ cask 'burp-suite' # Web security testing cask 'owasp-zap' # Web app security scanner cask 'wireshark' # Network analyzer + packet capture -# Security Utilities +# Security Utilities and Data Encryption brew 'bcrypt' # Encryption utility, using blowfish +brew 'borgbackup' # Encrypted, deduplicated backups brew 'clamav' # Open source virus scanning suite brew 'dnscrypt-proxy' # Proxy for using encrypted DNS cask 'gpg-suite' # PGP encryption for emails and files @@ -195,6 +196,7 @@ cask 'ledger-live' # Crypto hardware wallet manager cask 'mountain-duck' # Mount remote storage locations cask 'protonmail-bridge' # Decrypt ProtonMail emails cask 'protonvpn' # Client app for ProtonVPN +cask 'vorta' # GUI for BorgBackup # Browsers cask 'firefox' From 2529a69a973a2cd48c67029267aa9e5cae1c9e32 Mon Sep 17 00:00:00 2001 From: Alicia Sykes Date: Fri, 14 Apr 2023 22:32:21 +0100 Subject: [PATCH 2/3] Updates LC_ALL env var --- config/zsh/.zshenv | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/zsh/.zshenv b/config/zsh/.zshenv index f3fdc93..c2c1ba2 100644 --- a/config/zsh/.zshenv +++ b/config/zsh/.zshenv @@ -39,5 +39,5 @@ export ZLIB="${ZDOTDIR}/lib" # Encodings, languges and misc settings export LANG='en_GB.UTF-8'; -export LC_ALL='en_GB.UTF-8'; +export LC_ALL='en_GB'; export PYTHONIOENCODING='UTF-8'; From 826d09dd7c9be47617beefc566e1155cd071337a Mon Sep 17 00:00:00 2001 From: Alicia Sykes Date: Sat, 15 Apr 2023 21:31:31 +0100 Subject: [PATCH 3/3] Adds Go Lang to deb deps --- scripts/installs/debian-apt.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/scripts/installs/debian-apt.sh b/scripts/installs/debian-apt.sh index a1df89c..2ae4042 100755 --- a/scripts/installs/debian-apt.sh +++ b/scripts/installs/debian-apt.sh @@ -48,6 +48,9 @@ debian_apps=( 'xsel' # Copy paste access to the X clipboard 'zoxide' # Auto-learning navigation (better cd) + # Languages, compilers, runtimes, etc + 'golang' + # Security Utilities 'clamav' # Open source virus scanning suite 'cryptsetup' # Reading / writing encrypted volumes