blob: 8377b14922ee8e6f41eb0c5949fd2f04f627dd1f (
plain)
| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
 | #!/bin/sh
## This script is used to assemble the various components of my i3 config at login.
## Written by Jesse Morgan <jesse@jesterpm.net>
CONFIGD=$HOME/.config/i3/config.d
AUTOSTARTD=$HOME/.config/i3/autostart.d
echo "###" 
echo "### Do not edit this file!"
echo "###"
echo "### This file is automatically generated from the files in config.d"
echo "### and autostart.d. Edit those files instead."
echo "###\n"
# Get files from config.d
for file in $CONFIGD/*; do
    echo "### $file"
    cat $file
done
# Get files from autostart.d
for file in $AUTOSTARTD/*; do
    echo "### $file"
    cat $file
done
 |