mirror of
https://github.com/arthur-pbty/arthur-os.git
synced 2026-08-01 20:28:16 +02:00
* 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
159 B
Bash
Executable File
10 lines
159 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# omarchy:summary=Print an informational message in yellow
|
|
# omarchy:args=<message>
|
|
|
|
YELLOW='\033[1;33m'
|
|
NC='\033[0m'
|
|
|
|
echo -e "${YELLOW}$*${NC}"
|