app.css
code.Settings → GitHub Pages → Source [master branch] → Save
Github Pages link
You can use different Add-ons/Extensions for it
You can run Bento in a Docker Container, either with docker run
, or with the included docker-compose
file.
config.js
file: git clone https://github.com/migueravila/Bento/
docker
command, providing the path to the config.js
file, changing port mappings if needed.# docker run -it -d -p 80:80 -v <config.js location>:/usr/share/nginx/html/config.js lewisdoesstuff/bento
git clone https://github.com/migueravila/Bento/
config.js
file in docker-compose.yml
cd
into the cloned repo, then run # docker-compose -d up
to start. All customization can be managed in the config.js
file:
To change the default name, the greetings and if you want to have an image background or open your links in new tabs, edit the first configs in the config.js
.
// General
name: 'John',
imageBackground: false,
openInNewTab: true,
// Greetings
greetingMorning: 'Good morning!',
greetingAfternoon: 'Good afternoon,',
greetingEvening: 'Good evening,',
greetingNight: 'Go to Sleep!',
You can change the background by substituting the
background.jpg
file inassets
folder.
Bento has three different layouts bento
, lists
& buttons
. It allows you to customise your experience giving you more buttons or lists depending on how are you more comfortable. To modify the laout you need to change the following line in the config.js
file:
// Layout
bentoLayout: 'bento', // 'bento', 'lists', 'buttons'
If you want to customize all your extra buttons and lists go to 🏷️ Buttons & Links & 📑 Lists & Links sections.
To edit the buttons you just need to change the follow list in the config.js
file by choosing a link, an icon from Lucide icons and a name. If you're using the buttons
layout you can customize secondButtonsContainer
firstButtonsContainer: [
{
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://todoist.com',
},
{
id: '4',
name: 'Calendar',
icon: 'calendar',
link: 'https://calendar.google.com/calendar/r',
},
{
id: '5',
name: 'Reddit',
icon: 'glasses',
link: 'https://reddit.com',
},
{
id: '6',
name: 'Odysee',
icon: 'youtube',
link: 'https://odysee.com/',
},
],
The same happens with the list links, you can change the list icon (also using Lucide icons) and the links. If you're using the lists
layout you can customize secondListsContainer
, you can find it bellow firstListsContainer
.
firstlistsContainer: [
{
icon: 'music',
id: '1',
links: [
{
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',
},
],
},
{
icon: 'coffee',
id: '2',
links: [
{
name: 'Linkedin',
link: 'https://www.youtube.com/watch?v=dQw4w9WgXcQ',
},
{
name: 'Dribbble',
link: 'https://www.linkedin.com',
},
{
name: 'Trello',
link: 'https://www.trello.com',
},
{
name: 'Slack',
link: 'https://www.slack.com',
},
],
},
],
For setting up the Weather widget you'll need an API Key from: https://openweathermap.org/
. Once you have your Key you'll need to set your latitude and longitude, you can use: https://www.latlong.net/
to get them.
Finally, choose an Icon set:
Finally just add them to the config.js
file.
// Weather
weatherKey: 'InsertYourAPIKeyHere123456',
weatherIcons: 'OneDark',
weatherUnit: 'C',
weatherLatitude: '37.774929',
weatherLongitude: '-122.419418',
In the app.css
file you can change the variables for both themes (Dark and Light):
/* Light theme */
:root {
--accent: #61b0f1; /* Hover color */
--bg: #f5f5f5; /* Background color */
--sbg: #e4e6e6; /* Cards color */
--fg: #3a3a3a; /* Foreground color */
--sfg: #3a3a3a; /* Sceondary Foreground color */
}
/* Dark theme */
.darktheme {
--accent: #61b0f1; /* Hover color */
--bg: #19171a; /* Background color */
--sbg: #201e21; /* Cards color */
--fg: #d8dee9; /* Foreground color */
--sfg: #3a3a3a; /* Secondary Foreground color */
}
The theme can be automatically changed by the OS' current theme or personalized hours
that you can change in the config.js
file:
// Autochange
autoChangeTheme: true,
// Autochange 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