Gogh/README.md

260 lines
9.8 KiB
Markdown
Raw Normal View History

2023-02-13 02:37:54 +03:00
<h1 align="center">
Gogh
</h1>
2013-11-19 05:17:45 +04:00
2020-12-16 17:34:51 +03:00
<div align="center">
2022-04-19 02:59:46 +03:00
<img src="https://raw.githubusercontent.com/Gogh-Co/Gogh/master/images/gogh/Gogh-logo-dark.png" alt="Gogh" width="100%">
2020-12-16 17:34:51 +03:00
</div>
2015-04-19 18:25:24 +03:00
2020-12-16 17:34:51 +03:00
<div align="center">
2023-02-13 02:37:54 +03:00
:small_blue_diamond: <a href="http://Gogh-Co.github.io/Gogh"> Visit the Website </a> :small_blue_diamond:
2020-12-16 17:34:51 +03:00
</div>
2021-09-13 02:55:06 +03:00
## Color scheme for your terminal
2015-04-19 18:25:24 +03:00
2023-03-20 18:33:22 +03:00
Gogh is a collection of color schemes for various terminal emulators, including Gnome Terminal, Pantheon Terminal, Tilix, and XFCE4 Terminal. These schemes are designed to make your terminal more visually appealing and improve your productivity by providing a better contrast and color differentiation.
The inspiration for Gogh came from the clean and minimalistic design of Elementary OS, but the project has since grown to include a variety of unique and beautiful options. Not only does Gogh work on Linux systems, but it's also compatible with iTerm on macOS, providing a consistent and visually appealing experience across platforms.
2013-11-19 05:17:45 +04:00
2023-02-13 02:42:38 +03:00
<br>
2023-02-13 02:37:54 +03:00
<table>
<tr>
<td>
<img width="441" height="1">
2023-02-13 02:42:38 +03:00
<b style="font-size:30px">Index:</b>
<br>
2023-02-13 02:37:54 +03:00
- [Pre-Install](https://github.com/Gogh-Co/Gogh#%EF%B8%8F-pre-install)
2023-02-13 02:44:13 +03:00
- [Install 📦](https://github.com/Gogh-Co/Gogh#-install)
2023-02-13 02:37:54 +03:00
- [Help](https://github.com/Gogh-Co/Gogh#thinking-help)
- [Install (non-interactive mode)](https://github.com/Gogh-Co/Gogh#%EF%B8%8F-install-non-interactive-mode)
- [Terminals](https://github.com/Gogh-Co/Gogh#-terminals)
- [Themes](https://github.com/Gogh-Co/Gogh#-themes)
2023-02-27 20:49:33 +03:00
- [Create your own theme](https://github.com/Gogh-Co/Gogh#-create-your-own-theme)
2023-02-13 02:37:54 +03:00
- [First commit](https://github.com/Gogh-Co/Gogh#-first-commit)
- [Credits](https://github.com/Gogh-Co/Gogh#heart-credits)
- [Contributors](https://github.com/Gogh-Co/Gogh#heart-contributors)
- [Author](https://github.com/Gogh-Co/Gogh#-author)
2023-02-27 07:46:40 +03:00
- [Why Gogh?](https://github.com/Gogh-Co/Gogh#%EF%B8%8F-why-gogh)
2023-02-13 02:37:54 +03:00
- [Mentions](https://github.com/Gogh-Co/Gogh#-mentions)
- [Stargazers over time](https://github.com/Gogh-Co/Gogh#-stargazers-over-time)
</td>
<td>
<img width="441" height="1">
2023-02-13 02:42:38 +03:00
<br>
<br>
2023-02-13 02:37:54 +03:00
![gogh](https://raw.githubusercontent.com/Gogh-Co/Gogh/master/images/demos/themes.gif)
</td>
</table>
<br>
2014-11-04 01:08:15 +03:00
2020-12-10 07:46:38 +03:00
## ⚙️ Pre-Install
In your terminal type:
2017-02-24 18:39:18 +03:00
```bash
2020-12-10 07:46:38 +03:00
sudo apt-get install dconf-cli uuid-runtime
2017-02-24 18:39:18 +03:00
```
2015-08-13 20:07:08 +03:00
You can now install in interactive mode (easy) or non-interactive mode (ideal for scripting)
2023-02-13 02:37:54 +03:00
## 📦 **Install**
Interactive mode
2015-08-13 20:07:08 +03:00
2019-10-09 05:10:04 +03:00
**1. Just copy and paste this one-line command:**
2015-08-13 20:07:08 +03:00
```bash
2020-12-10 07:46:38 +03:00
bash -c "$(wget -qO- https://git.io/vQgMr)"
```
Or, if you are a Mac user:
```bash
2020-12-10 07:46:38 +03:00
bash -c "$(curl -sLo- https://git.io/vQgMr)"
2015-08-13 20:07:08 +03:00
```
2019-10-09 05:10:04 +03:00
**2. Select the color theme installed from the terminal**
**DEMO:**
2022-04-19 02:59:46 +03:00
![gogh-demo-profile](https://raw.githubusercontent.com/Gogh-Co/Gogh/master/images/demos/gogh-demo-profile.gif)
2015-08-13 20:07:08 +03:00
<br/>
2023-02-13 02:05:18 +03:00
## :thinking: [Help](https://github.com/Gogh-Co/Gogh/blob/master/pages/help.md)
2023-02-13 02:05:18 +03:00
- [link to page](https://github.com/Gogh-Co/Gogh/blob/master/pages/help.md)
2023-02-13 02:05:18 +03:00
2015-08-13 20:07:08 +03:00
<br/>
2023-02-13 02:37:54 +03:00
## ⚙️ Install (non-interactive mode)
2020-12-10 07:46:38 +03:00
```bash
# clone the repo into "$HOME/src/gogh"
mkdir -p "$HOME/src"
cd "$HOME/src"
2022-04-19 02:59:46 +03:00
git clone https://github.com/Gogh-Co/Gogh.git gogh
cd gogh
2020-12-10 07:46:38 +03:00
# necessary in the Gnome terminal on ubuntu
2020-12-10 07:46:38 +03:00
export TERMINAL=gnome-terminal
# necessary in the Alacritty terminal
pip install -r requirements.txt
export TERMINAL=alacritty
2023-04-05 09:18:21 +03:00
# Enter theme installs dir
cd installs
2020-12-10 07:46:38 +03:00
# install themes
./atom.sh
./dracula.sh
```
2023-02-13 02:05:18 +03:00
<br/>
2021-12-17 20:46:15 +03:00
## 💻 Terminals
- Alacritty - [Web](https://github.com/alacritty/alacritty)
2021-12-17 20:46:15 +03:00
- Cygwin - [Web](https://www.cygwin.com/)
- Foot - [Web](https://codeberg.org/dnkl/foot)
- Gnome - [Web](https://help.gnome.org/users/gnome-terminal/stable/)
2022-01-30 17:02:35 +03:00
- Guake - [Web](http://guake-project.org/)
2021-12-17 20:46:15 +03:00
- iTerm - [Web](https://iterm2.com/)
- Kitty - [Web](https://sw.kovidgoyal.net/kitty/)
- Konsole - [Web](https://konsole.kde.org/)
- Mate - [Web](https://github.com/mate-desktop/mate-terminal)
- Mintty - [Web](https://mintty.github.io/)
- Pantheon / Elementary - [Web](https://github.com/elementary/terminal)
- Tilix - [Web](https://gnunn1.github.io/tilix-web/)
- XFCE4 - [Web](https://docs.xfce.org/apps/terminal/start)
2020-12-10 07:46:38 +03:00
<br/>
2022-04-19 02:59:46 +03:00
## 🎨 [Themes](https://Gogh-Co.github.io/Gogh/)
2020-12-10 07:46:38 +03:00
2022-04-19 02:59:46 +03:00
We have lots of themes. Check them out [here](https://Gogh-Co.github.io/Gogh/)!
2015-08-13 20:07:08 +03:00
2022-04-19 02:59:46 +03:00
also all themes in json format: https://raw.githubusercontent.com/Gogh-Co/Gogh/master/data/themes.json
2020-12-19 08:25:54 +03:00
2015-08-13 20:07:08 +03:00
<br/>
## 📌 [Create your own theme](https://github.com/Gogh-Co/Gogh/blob/master/pages/howto.md)
If you want to create your own color scheme or contribute to the project, [start here](https://github.com/Gogh-Co/Gogh/blob/master/pages/howto.md).
2015-04-13 05:17:31 +03:00
2023-07-02 20:02:48 +03:00
<br/>
## ⚫ Accessibility - wcag
- https://gogh-co.github.io/Gogh/wcag/
2023-02-13 02:05:18 +03:00
2020-12-10 07:46:38 +03:00
<br/>
2015-08-13 20:07:08 +03:00
2023-02-13 02:05:18 +03:00
## 🌱 First commit:
2015-08-13 20:07:08 +03:00
2023-02-13 02:05:18 +03:00
Nov 18, 2013 - [aa9871e](https://github.com/Gogh-Co/Gogh/commit/aa9871e2d6008d5dc8986b90356fa7cf433a0bb3)
2015-08-13 20:07:08 +03:00
2023-02-13 02:05:18 +03:00
<br/>
2015-08-13 20:07:08 +03:00
2020-12-10 07:46:38 +03:00
## :heart: Credits:
2014-12-14 23:49:19 +03:00
2018-09-22 19:46:55 +03:00
- [4bit](https://ciembor.github.io/4bit/)
- [Bluloco Light Theme](https://github.com/uloco/theme-bluloco-light)
- [Catppuccin](https://github.com/catppuccin)
- [Chalk](https://github.com/chalk/chalk) by [Sindre Sorhus](https://github.com/sindresorhus)
- [Dracula](https://github.com/dracula/dracula-theme) by [Zeno Rocha](https://github.com/zenorocha)
- [Elementary OS](https://elementary.io/)
- [Everblush](https://github.com/Everblush)
- [Everforest Dark & Light theme set](https://github.com/sainnhe/everforest) by [Sainnhe Park](https://github.com/sainnhe)
- [Fairy Floss](https://github.com/sailorhg/fairyfloss)
- [Flat Remix](https://github.com/daniruiz/flat-remix)
- [Flat UI Terminal Theme](https://dribbble.com/shots/1021755-Flat-UI-Terminal-Theme)
2018-01-20 00:56:42 +03:00
- [Gooey](http://simey.me/editor-themes/) by [Matt Harris](https://github.com/mdh34)
- [Gotham](https://github.com/whatyouhide/vim-gotham) by [Andrea Leopardi](https://github.com/whatyouhide)
- [Gruvbox](https://github.com/morhetz/gruvbox) by [Pavel Pertsev](https://github.com/morhetz)
- [Hemisu](https://noahfrederick.com/log/hemisu-for-os-x-terminal/) by [Noah Frederick](https://github.com/noahfrederick)
2019-10-18 09:16:44 +03:00
- [kokuban](https://github.com/ygkn/kokuban) by [ygkn](https://github.com/ygkn)
2018-09-22 19:46:55 +03:00
- [Monokai](https://web.archive.org/web/20161117102850/https://www.monokai.nl/blog/2006/07/15/textmate-color-theme) by [Wimer Hazenberg](https://github.com/monokai)
2022-06-06 18:05:23 +03:00
- [Nightfox](https://github.com/EdenEast/nightfox.nvim)
- [Ocean](https://github.com/fabianperez/ocean-dark-iterm) by [Fabian Perez](https://github.com/fabianperez)
- [Omni](https://github.com/getomni)
- [One Dark & Light theme set](https://github.com/nathanbuchar/one-dark-terminal) by [Nathan Buchar](https://github.com/nathanbuchar)
- [Panda](https://github.com/PandaTheme) by [Siamak](https://github.com/siamak)
- [Peppermint](https://noahfrederick.com/log/lion-terminal-theme-peppermint/) by [Noah Frederick](https://github.com/noahfrederick)
- [Rosé Pine](https://github.com/rose-pine)
- [SMYCK](http://color.smyck.org/) by [John-Paul Bader](https://github.com/hukl)
- [Snazzy](https://github.com/sindresorhus/hyper-snazzy) by [Sindre Sorhus](https://github.com/sindresorhus)
2018-09-22 19:46:55 +03:00
- [Solarized](https://ethanschoonover.com/solarized) by [Ethan Schoonover](https://github.com/altercation)
2022-01-20 17:19:46 +03:00
- [Sonokai](https://github.com/sainnhe/sonokai) by [Sainnhe Park](https://github.com/sainnhe)
2022-12-13 02:16:33 +03:00
- [Srcery](https://github.com/srcery-colors/srcery-terminal) by [Daniel Berg](https://github.com/roosta)
2019-12-28 01:46:45 +03:00
- [Summer Pop](https://github.com/guillermoap/Gogh) by [Guillermo Aguirre](https://github.com/guillermoap)
- [SynthWave '84 ](https://github.com/robb0wen/synthwave-vscode)
2022-07-21 03:50:02 +03:00
- [SynthWave Alpha](https://github.com/vikpe/synthwave-alpha)
- [Terminal Sexy](https://terminal.sexy) by [George Czabania](https://github.com/stayradiated)
- [Tilix](https://github.com/storm119/Tilix-Themes)
2021-07-14 04:12:07 +03:00
- [Tokyo Night](https://github.com/enkia/tokyo-night-vscode-theme)
- [Tomorrow color theme set](https://github.com/chriskempson/tomorrow-theme) by [Chris Kempson](https://github.com/chriskempson)
2021-07-14 04:12:07 +03:00
- Material theme by [Mitchel van Eijgen](https://gist.github.com/mvaneijgen/4c56701215847dd5ddcf) and [Liu Xinan](https://gist.github.com/xinan/ca2b82fef6aaa0d1e099)
2022-10-17 19:34:07 +03:00
- [KANAGAWA.nvim](https://github.com/rebelot/kanagawa.nvim)
2023-07-19 16:36:05 +03:00
- [Apprentice](https://romainl.github.io/Apprentice/)
- [Oxocarbon](https://github.com/nyoom-engineering/oxocarbon.nvim)
2015-08-13 20:07:08 +03:00
<br/>
2014-12-14 23:49:19 +03:00
2020-12-10 07:46:38 +03:00
## :heart: Contributors:
2015-01-03 23:20:02 +03:00
2023-02-13 02:05:18 +03:00
Many thanks to all who have participated in this project.
2023-02-28 00:58:56 +03:00
[@contributors](https://github.com/Gogh-Co/Gogh/graphs/contributors)
2015-08-13 20:07:08 +03:00
2023-02-28 00:58:56 +03:00
<a href="https://github.com/Gogh-Co/Gogh/graphs/contributors">
<img src="https://contributors-img.web.app/image?repo=Gogh-Co/Gogh&max=500" />
</a>
2015-08-13 20:07:08 +03:00
<br/>
2023-02-27 07:46:40 +03:00
## 🧠 Author (contributor)
2023-02-13 02:37:54 +03:00
2023-02-27 07:46:40 +03:00
I cannot claim to be the only author of this project. Without the help of the people who have contributed, this would not have been possible. Therefore, that's why all contributors are listed first in this document. While I am listed as the author, the true authors are all those who are mentioned in the document. I would like to express my gratitude to all of them, as well as to future contributors.
2015-05-20 07:17:27 +03:00
2023-02-27 07:46:40 +03:00
- Miguel D. Quintero - [Lanet.co](https://lanet.co)
2015-05-20 07:17:27 +03:00
2023-02-27 07:46:40 +03:00
&nbsp;&nbsp;&nbsp;&nbsp; [💵 Invite me a coffee - paypal](https://paypal.me/mgldvd?country.x=CO&locale.x=es_XC)
2015-08-13 20:07:08 +03:00
2023-02-27 07:46:40 +03:00
<br/>
2015-08-13 20:07:08 +03:00
2023-02-27 07:46:40 +03:00
## 🖌️ Why Gogh?
2022-06-26 21:09:21 +03:00
2023-02-27 07:46:40 +03:00
There is no blue without yellow and without orange.
-- [Vincent Van Gogh](https://en.wikipedia.org/wiki/Vincent_van_Gogh) --
2015-08-13 20:07:08 +03:00
2023-02-13 02:37:54 +03:00
<br/>
2022-06-26 21:09:21 +03:00
## 📣 Mentions
2014-04-24 06:04:19 +04:00
2021-12-13 20:20:23 +03:00
- [VSCode Theme](https://marketplace.visualstudio.com/items?itemName=Avetis.gogh-theme)
2015-04-20 01:51:43 +03:00
- [Awesome-Shell](https://github.com/alebcay/awesome-shell)
2018-09-22 19:46:55 +03:00
- [Hipertextual](https://hipertextual.com/archivo/2014/11/4bit/)
- [MuyLinux](https://www.muylinux.com/2015/06/06/ping-91)
2015-08-30 19:57:57 +03:00
- [Reddit - elementaryos](https://www.reddit.com/r/elementaryos/comments/3ivnb7/how_to_change_terminals_colors/)
2022-04-19 02:59:46 +03:00
- [dev.to](https://dev.to/Gogh-Co/color-scheme-for-your-terminal-1pea)
2023-05-23 07:32:50 +03:00
- [Ubuntupit](https://www.ubuntupit.com/best-ubuntu-terminal-themes-and-color-schemes/)
2020-04-25 21:31:21 +03:00
2023-02-13 02:37:54 +03:00
<br/>
2022-06-26 21:09:21 +03:00
## 🌟 Stargazers over time
[![Stargazers over time](https://starchart.cc/Gogh-Co/Gogh.svg)](https://starchart.cc/Gogh-Co/Gogh)