8 lines
67 B
Bash
8 lines
67 B
Bash
|
#!/bin/bash
|
||
|
set -e
|
||
|
set -u
|
||
|
|
||
|
# Build i3 config
|
||
|
cd i3/conf
|
||
|
./build.sh
|