Last active 4 hours ago

gistfile1.txt Raw
1#!/bin/bash
2set -e
3
4sudo pacman -Syu --noconfirm
5
6if ! command -v yay &> /dev/null; then
7 sudo pacman -S --needed git base-devel --noconfirm
8 git clone https://aur.archlinux.org/yay.git
9 cd yay
10 makepkg -si --noconfirm
11 cd ..
12 rm -rf yay
13fi
14
15yay -S --noconfirm anydesk
16
17sudo systemctl enable --now anydesk.service
18
19echo "AnyDesk instalado com sucesso!"