blob: e5ab96060f5d4485c7d19966c78994725a73ec95 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#!/bin/bash
wai=$(dirname $(readlink -f $0))
source "${wai}/include.sh"
##### Load config file
config_file=$(load ${data}/config)
##### Test apply on theme with no variables
$exec apply ${data}/google ${config_file}
cat $config_file
##### Test apply on theme with variables
$exec apply ${data}/seti ${config_file}
cat $config_file
##### Clear temporary file
rm $config_file
|