* Split fido2 and fingerprint setups into setup and remove Don't make one thing do two things * Extract helpers and clean up * No need to hide them * Don't need these
10 lines
143 B
Bash
Executable File
10 lines
143 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# omarchy:summary=Print a failure message in red
|
|
# omarchy:args=<message>
|
|
|
|
RED='\033[0;31m'
|
|
NC='\033[0m'
|
|
|
|
echo -e "${RED}$*${NC}"
|