15 lines
264 B
Bash
Executable File
15 lines
264 B
Bash
Executable File
#!/bin/bash
|
|
cp config_light.h config.h
|
|
make
|
|
mv st /usr/local/bin/st_light
|
|
cp config_dark.h config.h
|
|
make
|
|
mv st /usr/local/bin/st_dark
|
|
cp st_script /usr/local/bin/st
|
|
chmod 755 /usr/local/bin/st
|
|
chmod 755 /usr/local/bin/st_light
|
|
chmod 755 /usr/local/bin/st_dark
|
|
|
|
|
|
|