2021-07-05 21:08:10 -05:00
|
|
|
// ╔╗ ╔═╗╔╗╔╔╦╗╔═╗
|
|
|
|
// ╠╩╗║╣ ║║║ ║ ║ ║
|
|
|
|
// ╚═╝╚═╝╝╚╝ ╩ ╚═╝
|
|
|
|
// ┌─┐┌─┐┌┐┌┌─┐┬┌─┐┬ ┬┬─┐┌─┐┌┬┐┬┌─┐┌┐┌
|
|
|
|
// │ │ ││││├┤ ││ ┬│ │├┬┘├─┤ │ ││ ││││
|
|
|
|
// └─┘└─┘┘└┘└ ┴└─┘└─┘┴└─┴ ┴ ┴ ┴└─┘┘└┘
|
|
|
|
|
|
|
|
const CONFIG = {
|
|
|
|
// ┌┐ ┌─┐┌─┐┬┌─┐┌─┐
|
|
|
|
// ├┴┐├─┤└─┐││ └─┐
|
|
|
|
// └─┘┴ ┴└─┘┴└─┘└─┘
|
|
|
|
|
2021-07-20 21:28:00 -05:00
|
|
|
// General
|
2021-07-05 21:08:10 -05:00
|
|
|
name: 'John',
|
|
|
|
imageBackground: false,
|
|
|
|
openInNewTab: true,
|
2021-08-14 11:47:18 -05:00
|
|
|
twelveHourFormat: false,
|
2021-07-05 21:08:10 -05:00
|
|
|
|
2022-02-07 19:36:51 -06:00
|
|
|
// Layout
|
|
|
|
bentoLayout: 'bento', // 'bento', 'cards', 'lists'
|
|
|
|
|
2021-07-20 21:28:00 -05:00
|
|
|
// Greetings
|
2021-07-05 22:47:21 -05:00
|
|
|
greetingMorning: 'Good morning!',
|
|
|
|
greetingAfternoon: 'Good afternoon,',
|
|
|
|
greetingEvening: 'Good evening,',
|
|
|
|
greetingNight: 'Go to Sleep!',
|
|
|
|
|
2021-07-20 22:31:19 -05:00
|
|
|
// Weather
|
2022-02-07 19:36:51 -06:00
|
|
|
weatherKey: '15fe26a8e22e4783054e3273824c5e7b', // Write here your API Key
|
2022-02-03 11:04:50 -06:00
|
|
|
weatherIcons: 'OneDark', // 'Onedark', 'Nord', 'Dark', 'White'
|
2021-09-07 11:40:42 -05:00
|
|
|
weatherUnit: 'C', // 'F', 'C'
|
|
|
|
language: 'en', // More languages in https://openweathermap.org/current#multi
|
|
|
|
|
2021-09-07 11:42:19 -05:00
|
|
|
trackLocation: true, // If false or an error occurs, the app will use the lat/lon below
|
2021-08-15 14:20:54 -06:00
|
|
|
defaultLatitude: '37.775',
|
|
|
|
defaultLongitude: '-122.419',
|
2021-07-20 22:31:19 -05:00
|
|
|
|
2022-01-23 18:26:43 -06:00
|
|
|
// Autochange
|
2022-01-21 21:34:23 -06:00
|
|
|
autoChangeTheme: true,
|
2022-01-23 18:29:03 -06:00
|
|
|
|
|
|
|
// Autochabge by OS
|
2022-01-23 18:26:43 -06:00
|
|
|
changeThemeByOS: false,
|
|
|
|
|
|
|
|
// Autochange by hour options (24hrs format, string must be in: hh:mm)
|
2022-01-21 21:34:23 -06:00
|
|
|
changeThemeByHour: true,
|
2022-01-23 18:26:43 -06:00
|
|
|
hourDarkThemeActive: '18:30',
|
2022-01-22 10:16:06 -06:00
|
|
|
hourDarkThemeInactive: '07:00',
|
2022-01-21 21:34:23 -06:00
|
|
|
|
2022-02-07 19:36:51 -06:00
|
|
|
// ┌┐ ┬ ┬┌┬┐┌┬┐┌─┐┌┐┌┌─┐
|
|
|
|
// ├┴┐│ │ │ │ │ ││││└─┐
|
|
|
|
// └─┘└─┘ ┴ ┴ └─┘┘└┘└─┘
|
2021-07-05 21:08:10 -05:00
|
|
|
|
2022-02-07 19:36:51 -06:00
|
|
|
buttons: [
|
2021-07-05 21:08:10 -05:00
|
|
|
{
|
2021-07-20 20:50:46 -05:00
|
|
|
id: '1',
|
2021-07-05 21:08:10 -05:00
|
|
|
name: 'Github',
|
|
|
|
icon: 'github',
|
|
|
|
link: 'https://github.com/',
|
|
|
|
},
|
|
|
|
{
|
2021-07-20 20:50:46 -05:00
|
|
|
id: '2',
|
2021-07-05 21:08:10 -05:00
|
|
|
name: 'Mail',
|
|
|
|
icon: 'mail',
|
|
|
|
link: 'https://mail.protonmail.com/',
|
|
|
|
},
|
|
|
|
{
|
2021-07-20 20:50:46 -05:00
|
|
|
id: '3',
|
|
|
|
name: 'Todoist',
|
|
|
|
icon: 'trello',
|
2021-11-24 07:24:56 -06:00
|
|
|
link: 'https://todoist.com',
|
2021-07-20 20:50:46 -05:00
|
|
|
},
|
|
|
|
{
|
|
|
|
id: '4',
|
2021-07-05 21:08:10 -05:00
|
|
|
name: 'Calendar',
|
|
|
|
icon: 'calendar',
|
|
|
|
link: 'https://calendar.google.com/calendar/r',
|
|
|
|
},
|
|
|
|
{
|
2021-07-20 20:50:46 -05:00
|
|
|
id: '5',
|
2021-07-05 21:08:10 -05:00
|
|
|
name: 'Reddit',
|
2021-11-24 07:24:56 -06:00
|
|
|
icon: 'glasses',
|
2021-07-05 21:08:10 -05:00
|
|
|
link: 'https://reddit.com',
|
|
|
|
},
|
|
|
|
{
|
2021-07-20 20:50:46 -05:00
|
|
|
id: '6',
|
2021-07-05 21:08:10 -05:00
|
|
|
name: 'Odysee',
|
|
|
|
icon: 'youtube',
|
|
|
|
link: 'https://odysee.com/',
|
|
|
|
},
|
2022-02-07 19:36:51 -06:00
|
|
|
{
|
|
|
|
id: '7',
|
|
|
|
name: 'Odysee',
|
|
|
|
icon: 'youtube',
|
|
|
|
link: 'https://odysee.com/',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
id: '8',
|
|
|
|
name: 'Odysee',
|
|
|
|
icon: 'youtube',
|
|
|
|
link: 'https://odysee.com/',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
id: '9',
|
|
|
|
name: 'Odysee',
|
|
|
|
icon: 'youtube',
|
|
|
|
link: 'https://odysee.com/',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
id: '10',
|
|
|
|
name: 'Odysee',
|
|
|
|
icon: 'youtube',
|
|
|
|
link: 'https://odysee.com/',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
id: '11',
|
|
|
|
name: 'Odysee',
|
|
|
|
icon: 'youtube',
|
|
|
|
link: 'https://odysee.com/',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
id: '12',
|
|
|
|
name: 'Odysee',
|
|
|
|
icon: 'youtube',
|
|
|
|
link: 'https://odysee.com/',
|
|
|
|
},
|
|
|
|
|
2021-07-05 21:08:10 -05:00
|
|
|
],
|
|
|
|
|
|
|
|
// ┬ ┬┌─┐┌┬┐┌─┐
|
|
|
|
// │ │└─┐ │ └─┐
|
|
|
|
// ┴─┘┴└─┘ ┴ └─┘
|
|
|
|
|
2021-07-20 21:28:00 -05:00
|
|
|
//Icons
|
2021-07-05 21:08:10 -05:00
|
|
|
firstListIcon: 'music',
|
|
|
|
secondListIcon: 'coffee',
|
|
|
|
|
2021-07-20 21:28:00 -05:00
|
|
|
// Links
|
2021-07-05 21:08:10 -05:00
|
|
|
lists: {
|
|
|
|
firstList: [
|
|
|
|
{
|
2021-07-20 21:42:14 -05:00
|
|
|
name: 'Inspirational',
|
|
|
|
link: 'https://www.youtube.com/watch?v=dQw4w9WgXcQ',
|
2021-07-05 21:08:10 -05:00
|
|
|
},
|
|
|
|
{
|
2021-07-20 21:42:14 -05:00
|
|
|
name: 'Classic',
|
|
|
|
link: 'https://www.youtube.com/watch?v=dQw4w9WgXcQ',
|
2021-07-05 21:08:10 -05:00
|
|
|
},
|
|
|
|
{
|
2021-07-20 21:42:14 -05:00
|
|
|
name: 'Oldies',
|
|
|
|
link: 'https://www.youtube.com/watch?v=dQw4w9WgXcQ',
|
2021-07-05 21:08:10 -05:00
|
|
|
},
|
|
|
|
{
|
2021-07-20 21:42:14 -05:00
|
|
|
name: 'Rock',
|
|
|
|
link: 'https://www.youtube.com/watch?v=dQw4w9WgXcQ',
|
2021-07-05 21:08:10 -05:00
|
|
|
},
|
|
|
|
],
|
|
|
|
secondList: [
|
|
|
|
{
|
2021-07-20 20:50:46 -05:00
|
|
|
name: 'Linkedin',
|
2021-07-20 21:42:14 -05:00
|
|
|
link: 'https://linkedin.com/',
|
2021-07-05 21:08:10 -05:00
|
|
|
},
|
|
|
|
{
|
2021-07-20 21:42:14 -05:00
|
|
|
name: 'Figma',
|
|
|
|
link: 'https://figma.com/',
|
2021-07-05 21:08:10 -05:00
|
|
|
},
|
|
|
|
{
|
2021-07-20 21:42:14 -05:00
|
|
|
name: 'Dribbble',
|
|
|
|
link: 'https://dribbble.com',
|
2021-07-05 21:08:10 -05:00
|
|
|
},
|
|
|
|
{
|
2021-07-20 20:50:46 -05:00
|
|
|
name: 'Telegram',
|
2021-07-20 21:42:14 -05:00
|
|
|
link: 'https://webk.telegram.org',
|
2021-07-05 21:08:10 -05:00
|
|
|
},
|
|
|
|
],
|
|
|
|
},
|
|
|
|
};
|