Skip to content

Commit

Permalink
Rename repo to tinted-shell and add base24 template and themes (#53)
Browse files Browse the repository at this point in the history
Change repo to tinted-shell and add Base24 support

- Repository now supports multiple theme systems: base16 and base24
- Update colortest script and add base24 support
- Update README.md
- Add USAGE.md
  • Loading branch information
JamyGolden committed Mar 20, 2024
1 parent 3f1c06f commit 686d62b
Show file tree
Hide file tree
Showing 283 changed files with 3,092 additions and 943 deletions.
10 changes: 5 additions & 5 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,17 +17,17 @@ automatically.
1. Run `cd /path/to/base-builder-go && go build` to generate a binary:
`/path/to/base-builder-go/base16-builder-go`
1. Now execute the binary you generated while giving the `-template-dir`
arg the path to `base16-shell` repository: `./base16-builder-go
-template-dir ../base16-shell`
arg the path to `tinted-shell` repository: `./base16-builder-go
-template-dir ../tinted-shell`

Or the above steps represented in shell commands:

```shell
cd /path/to/base16-shell/../ # This repos parent dir
cd /path/to/tinted-shell/../ # This repos parent dir
git clone git@github.com:tinted-theming/base16-builder-go.git
cd base16-builder-go
go build ./base16-builder-go/base16-builder-go \
-template-dir ../base16-shell
-template-dir ../tinted-shell
```

### Usage for adding or editing a colorscheme
Expand All @@ -39,7 +39,7 @@ executing the `base16-builder-go` binary.
```shell
base16-builder-go \
-schemes-dir /path/to/base16-schemes \
-template-dir /path/to/base16-shell
-template-dir /path/to/tinted-shell
```

If you have more questions about [base16-builder-go][1], have a look at
Expand Down
42 changes: 19 additions & 23 deletions LICENSE
Original file line number Diff line number Diff line change
@@ -1,25 +1,21 @@
# LICENSE
Copyright 2012 Chris Kempson (http://chriskempson.com)
Copyright 2022 Tinted Theming (https://github.com/tinted-theming)

Base16 Shell is released under the MIT License:
Permission is hereby granted, free of charge, to any person obtaining a
copy of this software and associated documentation files (the
“Software”), to deal in the Software without restriction, including
without limitation the rights to use, copy, modify, merge, publish,
distribute, sublicense, and/or sell copies of the Software, and to
permit persons to whom the Software is furnished to do so, subject to
the following conditions:

> Copyright (C) 2012 [Chris Kempson](http://chriskempson.com)
> Copyright (C) 2022 [Tinted Theming](https://github.com/tinted-theming)
>
> Permission is hereby granted, free of charge, to any person obtaining
> a copy of this software and associated documentation files (the
> "Software"), to deal in the Software without restriction, including
> without limitation the rights to use, copy, modify, merge, publish,
> distribute, sublicense, and/or sell copies of the Software, and to
> permit persons to whom the Software is furnished to do so, subject to
> the following conditions:
>
> The above copyright notice and this permission notice shall be
> included in all copies or substantial portions of the Software.
>
> THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
> EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
> MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
> NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
> LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
> OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
> WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
The above copyright notice and this permission notice shall be included
in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS
OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
Loading

0 comments on commit 686d62b

Please sign in to comment.