🚀 Improved documentation images
This commit is contained in:
parent
4fb3f108f1
commit
0446f8732f
248
README-ES-MX.md
248
README-ES-MX.md
@ -1,248 +0,0 @@
|
||||

|
||||
|
||||
|
||||
<p style="margin: -20px 0 30px">
|
||||
<a href="https://www.buymeacoffee.com/migueravila" target="_blank" style='margin-right:0px; margin-top:5px'>
|
||||
<img align="center" src="https://github.com/migueravila/Bento/blob/master/assets/img/donation.png" alt="donation" height="35px" />
|
||||
</a>
|
||||
|
||||
<a href="https://migueravila.github.io/Bento/" target="_blank" style='margin-right:0px; margin-top:5px'>
|
||||
<img align="center" src="https://github.com/migueravila/Bento/blob/master/assets/img/live.png" alt="live-preview" height="35px" />
|
||||
</a>
|
||||
</p>
|
||||
|
||||
<br />
|
||||
|
||||
## 👇 Índice
|
||||
- [👇 Índice](#-índice)
|
||||
- [✨ Características](#-características)
|
||||
- [🚀 Usos](#-usos)
|
||||
- [Como página de inicio](#como-página-de-inicio)
|
||||
- [Como una nueva pestaña](#como-una-nueva-pestaña)
|
||||
- [🎨 Personalización](#-personalización)
|
||||
- [👋 General: Nombre, Imagen De Fondo y Saludos](#-general-nombre-imagen-de-fondo-y-saludos)
|
||||
- [🏷️ Botones de Enlace****](#️-botones-de-enlace)
|
||||
- [📑 Lista de enlaces](#-lista-de-enlaces)
|
||||
- [⛈️ Clima: Clave De La Api, Iconos y Grupos](#️-clima-clave-de-la-api-iconos-y-grupos)
|
||||
- [💛 Colores](#-colores)
|
||||
- [🌑 Cambio automatico de tema](#-cambio-automatico-de-tema)
|
||||
|
||||
|
||||
## ✨ Características
|
||||
|
||||
- **Configuración Sencilla** de archivos.
|
||||
- **Modo Claro/Obscuro** puedes alternarlos y se guardara en tu almacenamiento local.
|
||||
- **Fecha y Hora**, puedes utilizar el formato de 24 horas (predeterminado) o el de 12 horas.
|
||||
- **Saludos** fáciles de modificar.
|
||||
- **Variables** para colores y tamaños de fuente personalizados en el código del archivo `style.css`.
|
||||
- **Iconos** todos los iconos provienen de [Feather Icons](https://feathericons.com/) (Otros los hice yo mismo, tomando los iconos de Feather Icons como base).
|
||||
- **Archivos Modulares** de JavaScript para una lectura sencilla.
|
||||
|
||||
## 🚀 Usos
|
||||
|
||||
#### Como página de inicio
|
||||
|
||||
1. Haz un Fork de este repositorio
|
||||
2. Activa el servicio de GitHub Pages `Settings > GitHub Pages > Source [rama master] > Save`
|
||||
3. Configúrala como página de inicio:
|
||||
- Haz click en el botón Menú, selecciona Opciones, selecciona Preferencias
|
||||
- Haz click en el panel de inicio.
|
||||
- Haz click en el menú al lado de Inicio y Nuevas Ventanas. Elige la opción de mostrar URL's personalizadas, después, añade el enlace de tu GitHub Pages.
|
||||
|
||||
#### Como una nueva pestaña
|
||||
|
||||
Puedes utilizar distintos Add-ons/Extensiones para ello
|
||||
|
||||
- Si usas Firefox: [Custom New Tab Page](https://addons.mozilla.org/en-US/firefox/addon/custom-new-tab-page/?src=search)
|
||||
- Si usas Chromium (Brave, Vivaldi, Chrome): [Custom New Tab URL](https://chrome.google.com/webstore/detail/custom-new-tab-url/mmjbdbjnoablegbkcklggeknkfcjkjia)
|
||||
|
||||
## 🎨 Personalización
|
||||
|
||||
Casi todas la personalización puede ser configurada desde el archivo `config.js`:
|
||||
|
||||
### 👋 General: Nombre, Imagen De Fondo y Saludos
|
||||
|
||||
Para cambiar el nombre por defecto, los saludos y si deseas tener una imagen de fondo o abrir los enlaces en una nueva pestaña, edita las primeras configuraciones en el archivo `config.js`.
|
||||
|
||||
```js
|
||||
// General
|
||||
name: 'John',
|
||||
imageBackground: false,
|
||||
openInNewTab: true,
|
||||
|
||||
// Saludos
|
||||
greetingMorning: 'Good morning!',
|
||||
greetingAfternoon: 'Good afternoon,',
|
||||
greetingEvening: 'Good evening,',
|
||||
greetingNight: 'Go to Sleep!',
|
||||
|
||||
```
|
||||
|
||||
> Puedes cambiar el fondo, sustituyendo el archivo `background.jpg` en la carpeta `assets`.
|
||||
|
||||

|
||||
|
||||
### 🏷️ Botones de Enlace****
|
||||
|
||||
Para editar los botones solo tienes que cambiar la siguiente lista en el archivo `config.js` eligiendo un enlace, un icono proveniente de [Feather Icons](https://feathericons.com/) y un nombre:
|
||||
|
||||
```js
|
||||
cards: [
|
||||
{
|
||||
id: '1',
|
||||
name: 'Github',
|
||||
icon: 'github',
|
||||
link: 'https://github.com/',
|
||||
},
|
||||
{
|
||||
id: '2',
|
||||
name: 'Mail',
|
||||
icon: 'mail',
|
||||
link: 'https://mail.protonmail.com/',
|
||||
},
|
||||
{
|
||||
id: '3',
|
||||
name: 'Todoist',
|
||||
icon: 'trello',
|
||||
link: 'https://calendar.google.com/calendar/r',
|
||||
},
|
||||
{
|
||||
id: '4',
|
||||
name: 'Calendar',
|
||||
icon: 'calendar',
|
||||
link: 'https://calendar.google.com/calendar/r',
|
||||
},
|
||||
{
|
||||
id: '5',
|
||||
name: 'Reddit',
|
||||
icon: 'bookmark',
|
||||
link: 'https://reddit.com',
|
||||
},
|
||||
{
|
||||
id: '6',
|
||||
name: 'Odysee',
|
||||
icon: 'youtube',
|
||||
link: 'https://odysee.com/',
|
||||
},
|
||||
],
|
||||
```
|
||||
|
||||
### 📑 Lista de enlaces
|
||||
|
||||
Lo mismo pasa con la lista de enlaces, puedes cambiar la lista de iconos (también provenientes de [Feather Icons](https://feathericons.com/)) y los enlaces:
|
||||
|
||||
```js
|
||||
//Iconos
|
||||
firstListIcon: 'music',
|
||||
secondListIcon: 'coffee',
|
||||
|
||||
// Enlaces
|
||||
lists: {
|
||||
firstList: [
|
||||
{
|
||||
name: 'Inspirational',
|
||||
link: 'https://www.youtube.com/watch?v=dQw4w9WgXcQ',
|
||||
},
|
||||
{
|
||||
name: 'Classic',
|
||||
link: 'https://www.youtube.com/watch?v=dQw4w9WgXcQ',
|
||||
},
|
||||
{
|
||||
name: 'Oldies',
|
||||
link: 'https://www.youtube.com/watch?v=dQw4w9WgXcQ',
|
||||
},
|
||||
{
|
||||
name: 'Rock',
|
||||
link: 'https://www.youtube.com/watch?v=dQw4w9WgXcQ',
|
||||
},
|
||||
],
|
||||
secondList: [
|
||||
{
|
||||
name: 'Linkedin',
|
||||
link: 'https://linkedin.com/',
|
||||
},
|
||||
{
|
||||
name: 'Figma',
|
||||
link: 'https://figma.com/',
|
||||
},
|
||||
{
|
||||
name: 'Dribbble',
|
||||
link: 'https://dribbble.com',
|
||||
},
|
||||
{
|
||||
name: 'Telegram',
|
||||
link: 'https://webk.telegram.org',
|
||||
},
|
||||
],
|
||||
},
|
||||
```
|
||||
|
||||
### ⛈️ Clima: Clave De La Api, Iconos y Grupos
|
||||
|
||||
Para configurar el widget del clima necesitaras una clave de API proveniente de: `https://openweathermap.org/`. Una vez que hayas obtenido tu clave, necesitaras configurar tu latitud y longitud, para ello puedes usar: `https://www.latlong.net/` para obtenerlas.
|
||||
|
||||
Finalmente, escoge un set de iconos:
|
||||
|
||||

|
||||
|
||||
- **Nord** Usa el esquema de colores Nord si te encantan los colores agradables a la vista.
|
||||
- **OneDark** (_Predeterminado_) Usa el esquema de colores One Dark Pro.
|
||||
- **Dark** Para usuarios que solo usan temas claros y quieren un look minimalista.
|
||||
- **White** Para usuarios que solo usan temas oscuros y quieren un look minimalista.
|
||||
|
||||
Finalmente, solo añádelos al archivo `config.js`.
|
||||
|
||||
```js
|
||||
// clima
|
||||
weatherKey: 'InsertYourAPIKeyHere123456',
|
||||
weatherIcons: 'OneDark',
|
||||
weatherUnit: 'C',
|
||||
weatherLatitude: '37.774929',
|
||||
weatherLongitude: '-122.419418',
|
||||
```
|
||||
|
||||
### 💛 Colores
|
||||
|
||||
En el archivo `app.css` puedes cambiar las variables para cualquiera de los temas (Oscuro y Claro):
|
||||
|
||||
```css
|
||||
/* Tema Claro */
|
||||
|
||||
:root {
|
||||
--accent: #61b0f1; /* Hover color */
|
||||
--bg: #f5f5f5; /* Background color */
|
||||
--sbg: #e4e6e6; /* Cards color */
|
||||
--fg: #3a3a3a; /* Foreground color */
|
||||
--sfg: #3a3a3a; /* Sceondary Foreground color */
|
||||
}
|
||||
|
||||
/* Tema Oscuro */
|
||||
|
||||
.darktheme {
|
||||
--accent: #61b0f1; /* Hover color */
|
||||
--bg: #19171a; /* Background color */
|
||||
--sbg: #201e21; /* Cards color */
|
||||
--fg: #d8dee9; /* Foreground color */
|
||||
--sfg: #3a3a3a; /* Secondary Foreground color */
|
||||
}
|
||||
```
|
||||
|
||||
### 🌑 Cambio automatico de tema
|
||||
|
||||
The theme can be automatically changed by the OS' current theme or personalized hours
|
||||
that you can change in the `config.js` file:
|
||||
|
||||
```js
|
||||
// Autochange
|
||||
autoChangeTheme: true,
|
||||
|
||||
// Autochabge by OS
|
||||
changeThemeByOS: false,
|
||||
|
||||
// Autochange by hour options (24hrs format, string must be in: hh:mm)
|
||||
changeThemeByHour: true, // If it's true, it will use the values below:
|
||||
hourDarkThemeActive: '18:30', // Turn on the dark theme after this hour
|
||||
hourDarkThemeInactive: '07:00', // Turn off the dark theme after this hour and before the above hour
|
||||
```
|
||||
|
||||

|
27
README.md
27
README.md
@ -1,6 +1,5 @@
|
||||

|
||||
|
||||
|
||||
<p style="margin: -20px 0 30px">
|
||||
<a href="https://www.buymeacoffee.com/migueravila" target="_blank" style='margin-right:0px; margin-top:5px'>
|
||||
<img align="center" src="https://github.com/migueravila/Bento/blob/master/assets/img/donation.png" alt="donation" height="35px" />
|
||||
@ -8,11 +7,7 @@
|
||||
|
||||
<a href="https://migueravila.github.io/Bento/" target="_blank" style='margin-right:0px; margin-top:5px'>
|
||||
<img align="center" src="https://github.com/migueravila/Bento/blob/master/assets/img/live.png" alt="live-preview" height="35px" />
|
||||
</a>
|
||||
|
||||
<a href="https://github.com/migueravila/Bento/blob/master/README-ES-MX.md" target="_blank" style='margin-right:0px; margin-top:5px'>
|
||||
<img align="center" src="https://github.com/migueravila/Bento/blob/master/assets/img/spanish.png" alt="live-preview" height="35px" />
|
||||
</a>
|
||||
</a>
|
||||
</p>
|
||||
|
||||
<br />
|
||||
@ -25,8 +20,9 @@
|
||||
- [As New Tab](#as-new-tab)
|
||||
- [🎨 Customization](#-customization)
|
||||
- [👋 General: Name, Image Background and Greetings](#-general-name-image-background-and-greetings)
|
||||
- [🏷️ Button Links](#️-button-links)
|
||||
- [📑 List Links](#-list-links)
|
||||
- [📐 Layouts: Bento, Lists and Buttons.](#-layouts-bento-lists-and-buttons)
|
||||
- [🏷️ Buttons & Links](#️-buttons--links)
|
||||
- [📑 Lists & Links](#-lists--links)
|
||||
- [⛈️ Weather: Api Key, Icons and Unit](#️-weather-api-key-icons-and-unit)
|
||||
- [💛 Colors](#-colors)
|
||||
- [🌑 Auto change theme](#-auto-change-theme)
|
||||
@ -35,7 +31,8 @@
|
||||
## ✨ Features
|
||||
|
||||
- **Easy configuration** file.
|
||||
- **Dark/Light** mode, you can toggle them and It'll be saved in local storage.
|
||||
- **Dark/Light** mode, you can toggle them and It'll be saved in local storage.2
|
||||
- **Layouts!** to customize your experience following your workflow.
|
||||
- **Clock and Date** format can be set to 24 hour (default) or 12 hour.
|
||||
- **Greetings** are easy to modify.
|
||||
- **Variables** for custom colors and font sizes in the `style.css` code.
|
||||
@ -84,9 +81,13 @@ To change the default name, the greetings and if you want to have an image backg
|
||||
|
||||
> You cah change the background by substituting the `background.jpg` file in `assets` folder.
|
||||
|
||||

|
||||

|
||||
|
||||
### 🏷️ Button Links
|
||||
### 📐 Layouts: Bento, Lists and Buttons.
|
||||
|
||||

|
||||
|
||||
### 🏷️ Buttons & Links
|
||||
|
||||
To edit the buttons you just need to change the follow list in the `config.js` file by choosing a link, an icon from [Feather icons](https://feathericons.com/) and a name:
|
||||
|
||||
@ -131,7 +132,7 @@ cards: [
|
||||
],
|
||||
```
|
||||
|
||||
### 📑 List Links
|
||||
### 📑 Lists & Links
|
||||
|
||||
The same happens with the list links, you can change the list icon (also using feather icons) and the links:
|
||||
|
||||
@ -249,4 +250,4 @@ that you can change in the `config.js` file:
|
||||
hourDarkThemeInactive: '07:00', // Turn off the dark theme after this hour and before the above hour
|
||||
```
|
||||
|
||||

|
||||

|
6
app.css
6
app.css
@ -25,7 +25,7 @@
|
||||
--sfg: #494949; /* Sceondary Foreground color */
|
||||
|
||||
/* Light Colors */
|
||||
--accent: #61b0f1; /* Hover color */
|
||||
--accent: #57a0d9; /* Hover color */
|
||||
--background: #f5f5f5; /* Background color */
|
||||
--cards: #e4e6e6; /* Cards color */
|
||||
|
||||
@ -39,13 +39,13 @@
|
||||
|
||||
.darktheme {
|
||||
/* Dark Colors */
|
||||
--accent: #61b0f1; /* Hover color */
|
||||
--accent: #57a0d9; /* Hover color */
|
||||
--background: #19171a; /* Background color */
|
||||
--cards: #201e21; /* Cards color */
|
||||
|
||||
/* Fonts Color */
|
||||
--fg: #d8dee9; /* Foreground color */
|
||||
--sfg: #3a3a3a; /* Secondary Foreground color */
|
||||
--sfg: #2c292e; /* Secondary Foreground color */
|
||||
|
||||
/* Image background */
|
||||
--imgcol: linear-gradient(
|
||||
|
BIN
assets/img/backgroundImage.png
Normal file
BIN
assets/img/backgroundImage.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 596 KiB |
BIN
assets/img/bentoLayouts.png
Normal file
BIN
assets/img/bentoLayouts.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 565 KiB |
BIN
assets/img/darkMode.png
Normal file
BIN
assets/img/darkMode.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 975 KiB |
Binary file not shown.
Before Width: | Height: | Size: 950 KiB |
Binary file not shown.
Before Width: | Height: | Size: 6.5 KiB |
Binary file not shown.
Before Width: | Height: | Size: 239 KiB |
26
config.js
26
config.js
@ -17,7 +17,7 @@ const CONFIG = {
|
||||
twelveHourFormat: false,
|
||||
|
||||
// Layout
|
||||
bentoLayout: 'lists', // 'bento', 'lists', 'buttons'
|
||||
bentoLayout: 'bento', // 'bento', 'lists', 'buttons'
|
||||
|
||||
// Greetings
|
||||
greetingMorning: 'Good morning!',
|
||||
@ -164,19 +164,19 @@ const CONFIG = {
|
||||
id: '2',
|
||||
links: [
|
||||
{
|
||||
name: 'Inspirational',
|
||||
name: 'Linkedin',
|
||||
link: 'https://www.youtube.com/watch?v=dQw4w9WgXcQ',
|
||||
},
|
||||
{
|
||||
name: 'Classic',
|
||||
name: 'Dribbble',
|
||||
link: 'https://www.youtube.com/watch?v=dQw4w9WgXcQ',
|
||||
},
|
||||
{
|
||||
name: 'Oldies',
|
||||
name: 'Trello',
|
||||
link: 'https://www.youtube.com/watch?v=dQw4w9WgXcQ',
|
||||
},
|
||||
{
|
||||
name: 'Rock',
|
||||
name: 'Slack',
|
||||
link: 'https://www.youtube.com/watch?v=dQw4w9WgXcQ',
|
||||
},
|
||||
],
|
||||
@ -190,19 +190,19 @@ const CONFIG = {
|
||||
id: '1',
|
||||
links: [
|
||||
{
|
||||
name: 'Inspirational',
|
||||
name: 'Spotify',
|
||||
link: 'https://www.youtube.com/watch?v=dQw4w9WgXcQ',
|
||||
},
|
||||
{
|
||||
name: 'Classic',
|
||||
name: 'Reddit',
|
||||
link: 'https://www.youtube.com/watch?v=dQw4w9WgXcQ',
|
||||
},
|
||||
{
|
||||
name: 'Oldies',
|
||||
name: 'Hashnode',
|
||||
link: 'https://www.youtube.com/watch?v=dQw4w9WgXcQ',
|
||||
},
|
||||
{
|
||||
name: 'Rock',
|
||||
name: 'Pocket',
|
||||
link: 'https://www.youtube.com/watch?v=dQw4w9WgXcQ',
|
||||
},
|
||||
],
|
||||
@ -212,19 +212,19 @@ const CONFIG = {
|
||||
id: '2',
|
||||
links: [
|
||||
{
|
||||
name: 'Inspirational',
|
||||
name: 'Web',
|
||||
link: 'https://www.youtube.com/watch?v=dQw4w9WgXcQ',
|
||||
},
|
||||
{
|
||||
name: 'Classic',
|
||||
name: 'Rust',
|
||||
link: 'https://www.youtube.com/watch?v=dQw4w9WgXcQ',
|
||||
},
|
||||
{
|
||||
name: 'Oldies',
|
||||
name: 'Go',
|
||||
link: 'https://www.youtube.com/watch?v=dQw4w9WgXcQ',
|
||||
},
|
||||
{
|
||||
name: 'Rock',
|
||||
name: 'Repos',
|
||||
link: 'https://www.youtube.com/watch?v=dQw4w9WgXcQ',
|
||||
},
|
||||
],
|
||||
|
@ -56,7 +56,6 @@
|
||||
|
||||
<div class="linksBlock" id="linksBlock">
|
||||
<div class="linksBlockLeft" id="linksBlockLeft"></div>
|
||||
|
||||
<div class="linksBlockRight" id="linksBlockRight"></div>
|
||||
</div>
|
||||
</div>
|
||||
@ -66,11 +65,12 @@
|
||||
|
||||
<!-- Scripts -->
|
||||
<script src="assets/js/layout.js"></script>
|
||||
<script src="assets/js/time.js"></script>
|
||||
<script src="assets/js/theme.js"></script>
|
||||
<script src="assets/js/time.js"></script>
|
||||
<script src="assets/js/greeting.js"></script>
|
||||
<script src="assets/js/weather.js"></script>
|
||||
|
||||
<!-- Generators -->
|
||||
<script src="assets/js/buttons.js"></script>
|
||||
<script src="assets/js/lists.js"></script>
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user