Bento/config.js
Miguel R. Ávila 1ac99bde33 🎨 Javascript functions
2021-07-20 20:50:46 -05:00

119 lines
2.6 KiB
JavaScript

// ╔╗ ╔═╗╔╗╔╔╦╗╔═╗
// ╠╩╗║╣ ║║║ ║ ║ ║
// ╚═╝╚═╝╝╚╝ ╩ ╚═╝
// ┌─┐┌─┐┌┐┌┌─┐┬┌─┐┬ ┬┬─┐┌─┐┌┬┐┬┌─┐┌┐┌
// │ │ ││││├┤ ││ ┬│ │├┬┘├─┤ │ ││ ││││
// └─┘└─┘┘└┘└ ┴└─┘└─┘┴└─┴ ┴ ┴ ┴└─┘┘└┘
const CONFIG = {
// ┌┐ ┌─┐┌─┐┬┌─┐┌─┐
// ├┴┐├─┤└─┐││ └─┐
// └─┘┴ ┴└─┘┴└─┘└─┘
name: 'John',
layout: 'bento',
imageBackground: false,
openInNewTab: true,
weatherKey: '12345678910111213141516',
weatherIcons: 'OneDark',
weatherUnit: 'C',
greetingMorning: 'Good morning!',
greetingAfternoon: 'Good afternoon,',
greetingEvening: 'Good evening,',
greetingNight: 'Go to Sleep!',
// ┌─┐┌─┐┬─┐┌┬┐┌─┐
// │ ├─┤├┬┘ ││└─┐
// └─┘┴ ┴┴└──┴┘└─┘
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/',
},
],
// ┬ ┬┌─┐┌┬┐┌─┐
// │ │└─┐ │ └─┐
// ┴─┘┴└─┘ ┴ └─┘
firstListIcon: 'music',
secondListIcon: 'coffee',
lists: {
firstList: [
{
name: 'Github',
link: 'https://github.com/',
},
{
name: 'Mail',
link: 'https://mail.protonmail.com/',
},
{
name: 'Calendar',
link: 'https://calendar.google.com/calendar/r',
},
{
name: 'Reddit',
link: 'https://reddit.com',
},
],
secondList: [
{
name: 'Linkedin',
link: 'https://github.com/',
},
{
name: 'Facebook',
link: 'https://mail.protonmail.com/',
},
{
name: 'Instagram',
link: 'https://calendar.google.com/calendar/r',
},
{
name: 'Telegram',
link: 'https://reddit.com',
},
],
},
};