14 lines
249 B
Bash
Executable File
14 lines
249 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# blob:summary=Print the terminal text effects command the screensaver can use
|
|
# blob:hidden=true
|
|
|
|
for candidate in ttfx tte; do
|
|
if command -v "$candidate" &>/dev/null; then
|
|
printf '%s\n' "$candidate"
|
|
exit 0
|
|
fi
|
|
done
|
|
|
|
exit 1
|