reorganize directory structure again

This commit is contained in:
David Todd
2021-01-12 18:33:49 -06:00
parent 74ba4615d1
commit 158ccfcea0
63 changed files with 32 additions and 30 deletions

16
home/bin/build-i3-config Executable file
View File

@@ -0,0 +1,16 @@
#!/bin/bash
DF_PATH=${HOME}/dotfiles/.config/i3
CONFIG_PATH=${DF_PATH}/conf.d
DST_FILE=${DF_PATH}/config
echo "# This file is generated with the \`build-i3-config\` command" > ${DST_FILE}
echo "# Configuration has been broken up into the \`conf.d\` directory" >> ${DST_FILE}
cat ${CONFIG_PATH}/base.conf >> ${DST_FILE}
cat ${CONFIG_PATH}/gaps.conf >> ${DST_FILE}
cat ${CONFIG_PATH}/workspace.conf >> ${DST_FILE}
cat ${CONFIG_PATH}/i3bar.conf >> ${DST_FILE}
cat ${CONFIG_PATH}/window-classes.conf >> ${DST_FILE}
cat ${CONFIG_PATH}/layout-keybinds.conf >> ${DST_FILE}
cat ${CONFIG_PATH}/keybinds.conf >> ${DST_FILE}
cat ${CONFIG_PATH}/autostart.conf >> ${DST_FILE}