Add configs, build script, and run script to allow for real time switching of st executables
This commit is contained in:
parent
6682f3eee9
commit
d64fc0091c
4 changed files with 1087 additions and 0 deletions
14
build_terminals.sh
Executable file
14
build_terminals.sh
Executable file
|
@ -0,0 +1,14 @@
|
|||
#!/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
|
||||
|
||||
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue