blob: fedc758d7c817b1f8f60b991a37582c3f22571d5 (
plain)
1
2
3
4
5
6
7
8
9
10
|
#!/bin/sh
echo "Choose a mode (type master if unsure): "; ls ./modes/
read mode
echo "MODE=$mode" >> ./.config
echo "Choose a theme:" && ls ./theme/
read theme
echo "THEME=$theme" >> ./.config
echo "Set theme to $theme"
|