From ee04a85c14caad3d2c3989a634c851d7cb167cc9 Mon Sep 17 00:00:00 2001 From: mgldvd Date: Sat, 14 Sep 2024 18:46:11 -0500 Subject: [PATCH] Clicks are boring. --- README.md | 186 ++++++++++++++++++++++++++++++++++++++++++++++--- pages/help.md | 82 ---------------------- pages/howto.md | 82 ---------------------- 3 files changed, 175 insertions(+), 175 deletions(-) delete mode 100644 pages/help.md delete mode 100644 pages/howto.md diff --git a/README.md b/README.md index 7842f983..8c732e6f 100644 --- a/README.md +++ b/README.md @@ -28,12 +28,14 @@ The inspiration for Gogh came from the clean and minimalistic design of Elementa
- [Pre-Install](https://github.com/Gogh-Co/Gogh#%EF%B8%8F-pre-install) -- [Install 📦](https://github.com/Gogh-Co/Gogh#-install) -- [Help](https://github.com/Gogh-Co/Gogh#thinking-help) +- **[Install 📦](https://github.com/Gogh-Co/Gogh#-install)** - [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) +- [Help](https://github.com/Gogh-Co/Gogh#-help) - [Create your own theme](https://github.com/Gogh-Co/Gogh#-create-your-own-theme) +- [As command line](https://github.com/Gogh-Co/Gogh#-as-command-line) +- [Accessibility - wcag](https://github.com/Gogh-Co/Gogh#-accessibility-wcag) - [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) @@ -59,13 +61,13 @@ The inspiration for Gogh came from the clean and minimalistic design of Elementa In your terminal type: -Debian/Ubuntu +**Debian/Ubuntu** ```bash sudo apt-get install dconf-cli uuid-runtime ``` -Arch Linux +**Arch Linux** ```bash sudo pacman -S dconf util-linux-libs @@ -73,6 +75,9 @@ sudo pacman -S dconf util-linux-libs You can now install in interactive mode (easy) or non-interactive mode (ideal for scripting) +
+
+ ## 📦 **Install** Interactive mode @@ -96,13 +101,9 @@ bash -c "$(curl -sLo- https://git.io/vQgMr)" ![gogh-demo-profile](https://raw.githubusercontent.com/Gogh-Co/Gogh/master/images/demos/gogh-demo-profile.gif)
- -## :thinking: [Help](https://github.com/Gogh-Co/Gogh/blob/master/pages/help.md) - - - [link to page](https://github.com/Gogh-Co/Gogh/blob/master/pages/help.md) -
+ ## ⚙️ Install (non-interactive mode) Two ways: * Clone repo @@ -163,6 +164,7 @@ TERMINAL=gnome-terminal bash ./selenized-dark.sh GOGH_APPLY_SCRIPT=/path/to/file/apply-colors.sh bash ./selenized-dark.sh ``` +

## 💻 Terminals @@ -182,6 +184,7 @@ GOGH_APPLY_SCRIPT=/path/to/file/apply-colors.sh bash ./selenized-dark.sh - XFCE4 - [Web](https://docs.xfce.org/apps/terminal/start) - Terminator - [Web](https://github.com/gnome-terminator/terminator) +

## 🎨 [Themes](https://Gogh-Co.github.io/Gogh/) @@ -197,6 +200,166 @@ also all themes in json format: https://raw.githubusercontent.com/Gogh-Co/Gogh/m 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).
+
+ +## ❓ HELP + +- [Ubuntu 19.10: default_profile not a valid identifier, command not found](https://github.com/Gogh-Co/Gogh/issues/203) +- [Using Elementary terminal but says unsupported](https://github.com/Gogh-Co/Gogh/issues/175) +- [Doesn't working Debian](https://github.com/Gogh-Co/Gogh/issues/63) +- [Not Working on Ubuntu](https://github.com/Gogh-Co/Gogh/issues/41) +- `sudo apt install gconf2` - https://github.com/Gogh-Co/Gogh/issues/334#issuecomment-1374541799 + +### 🔹 Debian Fixes + +#### [Fix 1](https://github.com/Gogh-Co/Gogh/issues/63#issuecomment-361071956) (@romzie): + +- reset your profiles: + +```bash +dconf reset -f /org/gnome/terminal/legacy/profiles:/ +``` + +#### [Fix 2](https://github.com/Gogh-Co/Gogh/issues/63#issuecomment-401224491) (@MalwareJedi): + +- Reset your profiles: + +```bash +dconf reset -f /org/gnome/terminal/legacy/profiles:/ +``` + +- Close your terminal. Re-open the terminal. +- Go to **Edit** ---> **Preferences** ---> **Profiles**. +- Create NEW profile called **Default**. +- Close the terminal. Re-open the terminal. +- Confirm **Default** is still listed in your profiles. +- If it is, run the Gogh script again. + +#### [Fix 3](https://github.com/Gogh-Co/Gogh/issues/63#issuecomment-401510226) (@sui74): + +- Reset your profiles: + +```bash +dconf reset -f /org/gnome/terminal/legacy/profiles:/ +``` + +- "Unname" Rename profile called "default". + +```bash +sudo apt install uuid-runtime +``` +- run Gogh script. + + +### 🔹 Elementary OS + +1 - Uncomment the following line in `.bashrc` you can find this file in your `/home/USER/` directory. + +```bash + #force_color_prompt=yes +``` + +2 - Execute in terminal + +```bash +source .bashrc +``` + +## 🖼️ How to ceate your own theme + +Good news! Contributing with new themes is now easier and less intimidating. + +You just need to create a YAML format file, following the example of the other files in the `themes` folder. + +Please keep in mind a few simple rules. + +- The file name should match the name of the theme. For example: + - **Filename**: `Adventure Time.yml` + - **Inside the .yml file**: `name: 'Adventure Time'` +- Use title case for all words by capitalizing their first letter. +- Ensure that the contrast is sufficient for good legibility. + +**Now you can send Pull Request.** + +**Thank you!** + +--- + +### Theme .yml example + +```yml +--- +name: 'Gogh' +author: '' # 'AUTHOR NAME (http://WEBSITE.com)' +variant: '' # dark or light + +color_01: '#292D3E' # Black (Host) +color_02: '#F07178' # Red (Syntax string) +color_03: '#62DE84' # Green (Command) +color_04: '#FFCB6B' # Yellow (Command second) +color_05: '#75A1FF' # Blue (Path) +color_06: '#F580FF' # Magenta (Syntax var) +color_07: '#60BAEC' # Cyan (Prompt) +color_08: '#ABB2BF' # White + +color_09: '#959DCB' # Bright Black +color_10: '#F07178' # Bright Red (Command error) +color_11: '#C3E88D' # Bright Green (Exec) +color_12: '#FF5572' # Bright Yellow +color_13: '#82AAFF' # Bright Blue (Folder) +color_14: '#FFCB6B' # Bright Magenta +color_15: '#676E95' # Bright Cyan +color_16: '#FFFEFE' # Bright White + +background: '#292D3E' # Background +foreground: '#BFC7D5' # Foreground (Text) + +cursor: '#BFC7D5' # Cursor +``` +--- +### Explanation of colors and variables + +The colors of the terminal are composed of 18 colors in 3 sections. + +Section 1: Regular text. + +Section 2: Bold text. + +Section 3: text and background. + +The basic colors are 8: + +- Black +- Red +- Green +- Yellow +- Blue +- Purple +- Cyan +- White + +In comments variables is that of the console belongs each color. + +Here is a picture that explains a little better as colors are distributed. + +![Colors](https://raw.githubusercontent.com/Gogh-Co/Gogh/master/images/gogh/colors.png) + +
+ +## 👨‍💻 As command line + +**WARNING:** *Only if you know what you are doing or trust me :)* + +```bash +sudo wget -O /usr/local/bin/gogh https://git.io/vQgMr && sudo chmod +x /usr/local/bin/gogh +``` + +Now in your terminal just type `gogh`: + +```bash +gogh +``` + ## ⚫ Accessibility - wcag @@ -267,6 +430,7 @@ Many thanks to all who have participated in this project.
+
## 🧠 Author (contributor) @@ -277,6 +441,7 @@ I cannot claim to be the only author of this project. Without the help of the pe      [💵 Invite me a coffee - paypal](https://paypal.me/mgldvd?country.x=CO&locale.x=es_XC) +

## 🖌️ Why Gogh? @@ -285,6 +450,7 @@ There is no blue without yellow and without orange. -- [Vincent Van Gogh](https://en.wikipedia.org/wiki/Vincent_van_Gogh) -- +

## 📣 Mentions @@ -302,5 +468,3 @@ There is no blue without yellow and without orange. ## 🌟 Stargazers over time [![Stargazers over time](https://starchart.cc/Gogh-Co/Gogh.svg)](https://starchart.cc/Gogh-Co/Gogh) - - diff --git a/pages/help.md b/pages/help.md deleted file mode 100644 index 75407c74..00000000 --- a/pages/help.md +++ /dev/null @@ -1,82 +0,0 @@ - -![Gogh](https://raw.githubusercontent.com/Gogh-Co/Gogh/master/images/gogh/Gogh-logo.png) - ------ - -# HELP - -- [Ubuntu 19.10: default_profile not a valid identifier, command not found](https://github.com/Gogh-Co/Gogh/issues/203) -- [Using Elementary terminal but says unsupported](https://github.com/Gogh-Co/Gogh/issues/175) -- [Doesn't working Debian](https://github.com/Gogh-Co/Gogh/issues/63) -- [Not Working on Ubuntu](https://github.com/Gogh-Co/Gogh/issues/41) -- `sudo apt install gconf2` - https://github.com/Gogh-Co/Gogh/issues/334#issuecomment-1374541799 - -## Elementary OS - -1 - Uncomment the following line in `.bashrc` you can find this file in your `/home/USER/` directory. - -```bash - #force_color_prompt=yes -``` - -2 - Execute in terminal - -```bash -source .bashrc -``` - -## Debian Fixes - -### [Fix 1](https://github.com/Gogh-Co/Gogh/issues/63#issuecomment-361071956) (@romzie): - -- reset your profiles: - -```bash -dconf reset -f /org/gnome/terminal/legacy/profiles:/ -``` - -### [Fix 2](https://github.com/Gogh-Co/Gogh/issues/63#issuecomment-401224491) (@MalwareJedi): - -- Reset your profiles: - -```bash -dconf reset -f /org/gnome/terminal/legacy/profiles:/ -``` - -- Close your terminal. Re-open the terminal. -- Go to **Edit** ---> **Preferences** ---> **Profiles**. -- Create NEW profile called **Default**. -- Close the terminal. Re-open the terminal. -- Confirm **Default** is still listed in your profiles. -- If it is, run the Gogh script again. - -### [Fix 3](https://github.com/Gogh-Co/Gogh/issues/63#issuecomment-401510226) (@sui74): - -- Reset your profiles: - -```bash -dconf reset -f /org/gnome/terminal/legacy/profiles:/ -``` - -- "Unname" Rename profile called "default". - -```bash -sudo apt install uuid-runtime -``` -- run Gogh script. - ------ - -## Create a command line - -**WARNING:** *Only if you know what you are doing or trust me :)* - -```bash -sudo wget -O /usr/local/bin/gogh https://git.io/vQgMr && sudo chmod +x /usr/local/bin/gogh -``` - -Now in your terminal just type `gogh`: - -```bash -gogh -``` diff --git a/pages/howto.md b/pages/howto.md deleted file mode 100644 index fd6bff67..00000000 --- a/pages/howto.md +++ /dev/null @@ -1,82 +0,0 @@ - -![Gogh](https://raw.githubusercontent.com/Gogh-Co/Gogh/master/images/gogh/Gogh-logo.png) - ------ - -## How to ceate your own theme - -Good news! Contributing with new themes is now easier and less intimidating. - -You just need to create a YAML format file, following the example of the other files in the `themes` folder. - -Please keep in mind a few simple rules. - -- The file name should match the name of the theme. For example: - - **Filename**: `Adventure Time.yml` - - **Inside the .yml file**: `name: 'Adventure Time'` -- Use title case for all words by capitalizing their first letter. -- Ensure that the contrast is sufficient for good legibility. - -**Now you can send Pull Request.** - -**Thank you!** - ---- - -## Theme .yml example - -```yml ---- -name: 'Adventure Time' - -color_01: '#050404' # Black (Host) -color_02: '#BD0013' # Red (Syntax string) -color_03: '#4AB118' # Green (Command) -color_04: '#E7741E' # Yellow (Command second) -color_05: '#0F4AC6' # Blue (Path) -color_06: '#665993' # Magenta (Syntax var) -color_07: '#70A598' # Cyan (Prompt) -color_08: '#F8DCC0' # White - -color_09: '#4E7CBF' # Bright Black -color_10: '#FC5F5A' # Bright Red (Command error) -color_11: '#9EFF6E' # Bright Green (Exec) -color_12: '#EFC11A' # Bright Yellow -color_13: '#1997C6' # Bright Blue (Folder) -color_14: '#9B5953' # Bright Magenta -color_15: '#C8FAF4' # Bright Cyan -color_16: '#F6F5FB' # Bright White - -background: '#1F1D45' # Background -foreground: '#F8DCC0' # Foreground (Text) - -cursor: '#F8DCC0' # Cursor -``` ---- -## Explanation of colors and variables - -The colors of the terminal are composed of 18 colors in 3 sections. - -Section 1: Regular text. - -Section 2: Bold text. - -Section 3: text and background. - -The basic colors are 8: - -- Black -- Red -- Green -- Yellow -- Blue -- Purple -- Cyan -- White - -In comments variables is that of the console belongs each color. - -Here is a picture that explains a little better as colors are distributed. - -![Colors](https://raw.githubusercontent.com/Gogh-Co/Gogh/master/images/gogh/colors.png) -