dawn
For now, some settings can be tweaked by changing the CONFIG object located in ./userconfig.js.
To disable a component, put their name into the list of disabled components:
const CONFIG = new Config({
// ...
disabled: ['todo-list'] // search-bar, crypto-rate, current-time, weather-forecast, status-bar
});
Create new tabs and categories like so:
const CONFIG = new Config({
// ...
openLastVisitedTab: false,
tabs: [
{
name: 'boards',
background_url: 'src/res/banners/bg-1.gif',
categories: [{
name: 'fun',
links: [{
url: 'https://youtube.com',
name: 'youtube',
icon: 'brand-youtube',
icon_color: '#996767'
}]
}]
}
]
)
All the available icons can be found on tabler-icons.
Change the clock format in the status bar using strftime.org format.
Config example (userconfig.js):
const CONFIG = new Config({
// ...
clock: {
format: 'h:i p', // 13:30 PM
// format: 'do B Y - h:i', // 18th January 2021 - 13:30
// format: 'h:i - m/b/Y', // 13:30 - 3/Jul/2021
iconColor: 'grey'
}
});
Change your location and temperature scale (celius, fahrenheit) like such:
const CONFIG = new Config({
// ...
temperature: {
location: 'New York',
scale: 'C'
}
});
Alternatively, click on the weather widget to swap between Celius and Fahrenheit.
For the live crypto status, provide a crypto coin and a FIAT currency. Example:
const CONFIG = new Config({
// ...
crypto: {
coin: 'ETH', // BTC, LINK, DOGE etc
currency: 'USD', // EUR, JPY, BRL etc
refreshIn: 15 // refresh time (in seconds)
},
});
Alternatively, click on the crypto widget to change the settings:
REFACTOR Show weather location on hoverMAYBE RSS readerMAYBE Sync todo with google calendarMAYBE Subtasks w/ progress barMAYBE Subsections for todo DEADLINE ("today", "upcoming")MAYBE Optional sound fx