blob: 20228484ae48989f2b5bf1bfe733c94862f60263 (
plain)
1
2
3
4
5
6
7
8
9
10
|
#!/bin/sh
echo "Choose a mode (type master if unsure): "; 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"
|