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
149 B
Bash
Executable File
10 lines
149 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# omarchy:summary=Print a success message in green
|
|
# omarchy:args=<message>
|
|
|
|
GREEN='\033[0;32m'
|
|
NC='\033[0m'
|
|
|
|
echo -e "${GREEN}$*${NC}"
|