mirror of
https://gitlab.com/manzerbredes/i3-colors.git
synced 2025-04-06 08:36:24 +02:00
12 lines
234 B
Bash
12 lines
234 B
Bash
![]() |
#!/bin/bash
|
||
|
|
||
|
wai=$(dirname $(readlink -f $0))
|
||
|
source "${wai}/include.sh"
|
||
|
tmp=$(mktemp)
|
||
|
|
||
|
##### Test extract theme on a config file then apply it
|
||
|
$exec extract ${data}/config-with-vars > $tmp
|
||
|
$exec apply -d $tmp ${data}/config
|
||
|
rm $tmp
|
||
|
|