6 lines
203 B
Bash
Executable File
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
|