diff options
| author | Craig Jennings <c@cjennings.net> | 2026-01-19 11:04:10 -0600 |
|---|---|---|
| committer | Craig Jennings <c@cjennings.net> | 2026-01-19 11:04:10 -0600 |
| commit | 393a8df920613b03524deedbbd6db90642c3adea (patch) | |
| tree | fa7b5092fe04dd80c95ba0ae3d1416fb1ac02ac1 /archsetup | |
| parent | d1a76db1cfadad63d120ff1bcbc4c6e29faaaff0 (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>
Diffstat (limited to 'archsetup')
| -rwxr-xr-x | archsetup | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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" "$?" |
