- Fix nvim config - Add scripts - Add power setting - Add swayidle config - Add template system - Clean sway config
9 lines
120 B
Bash
9 lines
120 B
Bash
#! /bin/bash
|
|
|
|
string="$1"
|
|
|
|
while read from to; do
|
|
string="${string//\$\{$from\}/$to}"
|
|
done < "$2"
|
|
|
|
tee $3 <<<"$string"
|