mirror of
https://github.com/LukeHagar/omarchy.git
synced 2025-12-09 20:47:48 +00:00
6 lines
209 B
Bash
Executable File
6 lines
209 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# Give the user 10 instead of 3 tries to fat finger their password before lockout
|
|
echo "Defaults passwd_tries=10" | sudo tee /etc/sudoers.d/passwd-tries
|
|
sudo chmod 440 /etc/sudoers.d/passwd-tries
|