
- made conf.pl a bit smarter in detecting themes directory - added "configure" which points to config/conf.pl
7 lines
94 B
Bash
Executable file
7 lines
94 B
Bash
Executable file
#!/bin/bash
|
|
#
|
|
# Redirects to the config directory and runs conf.pl
|
|
|
|
cd config
|
|
./conf.pl
|
|
cd ..
|