14 lines
606 B
Bash
Executable File
14 lines
606 B
Bash
Executable File
#!/bin/bash
|
|
|
|
curl -fsSL https://tailscale.com/install.sh | sh
|
|
curl -fsSL https://neuralink.com/tsui/install.sh | bash
|
|
|
|
echo -e "\nStarting Tailscale..."
|
|
sudo tailscale up --accept-routes
|
|
|
|
echo -e "\nAdd tsui to sudoers..."
|
|
echo "$USER ALL=(ALL) NOPASSWD: $(which tsui)" | sudo tee /etc/sudoers.d/tsui
|
|
|
|
omarchy-tui-install "Tailscale" "sudo tsui" float https://cdn.jsdelivr.net/gh/homarr-labs/dashboard-icons/png/tailscale-light.png
|
|
omarchy-webapp-install "Tailscale Admin Console" "https://login.tailscale.com/admin/machines" https://cdn.jsdelivr.net/gh/homarr-labs/dashboard-icons/png/tailscale-light.png
|