omarchy/bin/omarchy-theme-list
2025-08-08 15:56:16 +02:00

6 lines
203 B
Bash
Executable File

#!/bin/bash
find ~/.config/omarchy/themes/ -mindepth 1 -maxdepth 1 \( -type d -o -type l \) | sort | while read -r path; do
echo "$(basename "$path" | sed -E 's/(^|-)([a-z])/\1\u\2/g; s/-/ /g')"
done