mirror of
https://github.com/LukeHagar/omarchy.git
synced 2025-12-06 04:20:23 +00:00
7 lines
204 B
Bash
7 lines
204 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/bin/pacman -Sy
|
|
EOF
|
|
sudo chmod 440 /etc/sudoers.d/repositories
|