mirror of
https://github.com/basecamp/omarchy.git
synced 2026-02-17 15:25:37 +00:00
7 lines
203 B
Bash
7 lines
203 B
Bash
echo "Allow pacman -Sy without sudo to easier installs"
|
|
|
|
sudo tee /etc/sudoers.d/repositories >/dev/null <<EOF
|
|
$USER ALL=(ALL) NOPASSWD: /usr/binpacman -Sy
|
|
EOF
|
|
sudo chmod 440 /etc/sudoers.d/repositories
|