blob: b616b4f0110b7f7a69e9bc92b177bf286c1057c4 (
plain)
1
2
3
4
5
6
7
8
9
10
|
#!/bin/sh
echo "Choose a profile: "; ls ./profiles/
read profile
echo "PROFILE=$profile" >> ./.config
echo "Choose a theme:" && ls ./theme/
read theme
echo "THEME=$theme" >> ./.config
echo "Set theme to $theme"
|