You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
264 B
15 lines
264 B
1 week ago
|
#!/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
|
||
|
|
||
|
|
||
|
|