Bento/config.js

119 lines
2.6 KiB
JavaScript
Raw Normal View History

// ╔╗ ╔═╗╔╗╔╔╦╗╔═╗
// ╠╩╗║╣ ║║║ ║ ║ ║
// ╚═╝╚═╝╝╚╝ ╩ ╚═╝
// ┌─┐┌─┐┌┐┌┌─┐┬┌─┐┬ ┬┬─┐┌─┐┌┬┐┬┌─┐┌┐┌
// │ │ ││││├┤ ││ ┬│ │├┬┘├─┤ │ ││ ││││
// └─┘└─┘┘└┘└ ┴└─┘└─┘┴└─┴ ┴ ┴ ┴└─┘┘└┘
const CONFIG = {
// ┌┐ ┌─┐┌─┐┬┌─┐┌─┐
// ├┴┐├─┤└─┐││ └─┐
// └─┘┴ ┴└─┘┴└─┘└─┘
name: 'John',
layout: 'bento',
imageBackground: false,
2021-07-05 22:47:21 -05:00
openInNewTab: true,
2021-07-20 20:50:46 -05:00
weatherKey: '12345678910111213141516',
2021-07-05 22:47:21 -05:00
weatherIcons: 'OneDark',
weatherUnit: 'C',
greetingMorning: 'Good morning!',
greetingAfternoon: 'Good afternoon,',
greetingEvening: 'Good evening,',
greetingNight: 'Go to Sleep!',
// ┌─┐┌─┐┬─┐┌┬┐┌─┐
// │ ├─┤├┬┘ ││└─┐
// └─┘┴ ┴┴└──┴┘└─┘
cards: [
{
2021-07-20 20:50:46 -05:00
id: '1',
name: 'Github',
icon: 'github',
link: 'https://github.com/',
},
{
2021-07-20 20:50:46 -05:00
id: '2',
name: 'Mail',
icon: 'mail',
link: 'https://mail.protonmail.com/',
},
{
2021-07-20 20:50:46 -05:00
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',
},
{
2021-07-20 20:50:46 -05:00
id: '5',
name: 'Reddit',
icon: 'bookmark',
link: 'https://reddit.com',
},
{
2021-07-20 20:50:46 -05:00
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: [
{
2021-07-20 20:50:46 -05:00
name: 'Linkedin',
link: 'https://github.com/',
},
{
2021-07-20 20:50:46 -05:00
name: 'Facebook',
link: 'https://mail.protonmail.com/',
},
{
2021-07-20 20:50:46 -05:00
name: 'Instagram',
link: 'https://calendar.google.com/calendar/r',
},
{
2021-07-20 20:50:46 -05:00
name: 'Telegram',
link: 'https://reddit.com',
},
],
},
};