10 lines
197 B
Bash
Executable File
10 lines
197 B
Bash
Executable File
#!/bin/sh
|
|
|
|
curl $1 |
|
|
sed \
|
|
-e 's/"purple":/"magenta":/g' \
|
|
-e 's/"brightPurple":/"brightMagenta":/g' \
|
|
-e 's/selectionBackground/selection/g' \
|
|
-e 's/cursorColor/cursor/g' |
|
|
jq >$2.json
|