Files
Hyprcachy/omarchy/scripts/omarchy-theme-list
2026-01-04 20:49:31 +01: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