]> git.donarmstrong.com Git - x_base.git/blob - .config/i3/build_config.sh
build i3 configuration and optionally include hostname information
[x_base.git] / .config / i3 / build_config.sh
1 #!/bin/sh
2
3 cd ~/.config/i3/;
4
5 if [ -e config_base ]; then
6     cat config_base > config;
7 fi;
8
9 if [ -e config_$(hostname) ]; then
10     cat config_$(hostname) >> config;
11 fi;