mirror of
https://gitlab.com/manzerbredes/i3-colors.git
synced 2025-04-06 08:36:24 +02:00
12 lines
160 B
Bash
12 lines
160 B
Bash
![]() |
#!/bin/bash
|
||
|
|
||
|
wai=$(dirname $(readlink -f $0))
|
||
|
exec=${wai}/../src/i3-colors.py
|
||
|
data=${wai}/data
|
||
|
|
||
|
load() {
|
||
|
tmp=$(mktemp)
|
||
|
cp ${1} ${tmp}
|
||
|
echo ${tmp}
|
||
|
}
|