summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCraig Jennings <c@cjennings.net>2026-01-19 11:04:10 -0600
committerCraig Jennings <c@cjennings.net>2026-01-19 11:04:10 -0600
commit393a8df920613b03524deedbbd6db90642c3adea (patch)
treefa7b5092fe04dd80c95ba0ae3d1416fb1ac02ac1
parentd1a76db1cfadad63d120ff1bcbc4c6e29faaaff0 (diff)
fix(archsetup): use official repo packages for tailscale and torbrowser
- tailscale-bin no longer exists in AUR; tailscale is now in official repos - torbrowser-launcher (official repo) is more reliable than tor-browser-bin (AUR) which has GPG key verification issues Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
-rwxr-xr-xarchsetup4
1 files changed, 2 insertions, 2 deletions
diff --git a/archsetup b/archsetup
index 34e8ed5..a2bdcd7 100755
--- a/archsetup
+++ b/archsetup
@@ -1303,7 +1303,7 @@ desktop_environment() {
action="Browsers" && display "subtitle" "$action"
pacman_install firefox
## TESTING IF NEEDED aur_install librewolf-bin
- aur_install tor-browser-bin
+ pacman_install torbrowser-launcher # downloads/updates tor browser automatically
aur_install google-chrome
# Install Printing
@@ -1427,7 +1427,7 @@ developer_workstation () {
action="VPN Tools" && display "subtitle" "$action"
pacman_install wireguard-tools # VPN - add configs to /etc/wireguard/
- aur_install tailscale-bin # mesh VPN - run 'tailscale up' to authenticate
+ pacman_install tailscale # mesh VPN - run 'tailscale up' to authenticate
action="enabling tailscale service" && display "task" "$action"
systemctl enable tailscaled >> "$logfile" 2>&1 || error "error" "$action" "$?"