-
Notifications
You must be signed in to change notification settings - Fork 269
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Change the update source to the source to the same one that windowsterminalthemes.dev uses rather than the backup theme file which is only used if that file cannot be loaded. https://github.com/atomcorp/themes/blob/master/app/src/App.tsx#L18 Filter out the cursor, selection and credits fields from the source file to make the diff easier to grok (added back in the following commit). BREAKING CHANGES: - Gruvbox Dark renamed to GruvboxDark. - Monokai Octagon renamed to Monokai Pro (Filter Octagon)
- Loading branch information
Showing
4 changed files
with
2,407 additions
and
120 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,10 @@ | ||
#!/bin/sh | ||
|
||
curl https://raw.githubusercontent.com/atomcorp/themes/master/app/src/$1.json | | ||
curl $1 | | ||
sed \ | ||
-e 's/"purple":/"magenta":/g' \ | ||
-e 's/"brightPurple":/"brightMagenta":/g' \ | ||
-e 's/selectionBackground/selection/g' \ | ||
-e 's/cursorColor/cursor/g' | | ||
jq -c >$2.json | ||
jq 'map(del(.meta.credits,.cursor,.selection))' >$2.json | ||
|
Oops, something went wrong.