Add configs, build script, and run script to allow for real time switching of st executables

This commit is contained in:
Alex Selimov 2024-11-11 21:58:19 -05:00
parent 6682f3eee9
commit d64fc0091c
4 changed files with 1087 additions and 0 deletions

14
build_terminals.sh Executable file
View 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