- Numrow Switch tabs
- t Open the create task panel
- Enter Create a task
- Tab Go to next field
- s Open the search dialog
- Esc Close the edit/create task panel (when field is focused)
For now, some settings can be tweaked by changing the GLOBAL_CONFIG
object located in ./userconfig.js
.
To disable a component, put their name into the list of disabled
components:
const GLOBAL_CONFIG = new Config({
// ...
disabled: ['todo-list'] // search-bar, crypto-rate, current-time, weather-forecast, status-bar
});
Change the clock format in the status bar using strftime.org format.
Config example (userconfig.js
):
const GLOBAL_CONFIG = new Config({
// ...
clock: 'h:i p', // 13:30 PM
clock: 'do B Y - h:i', // 18th January 2021 - 13:30
clock: 'h:i - m/b/Y' // 13:30 - 3/Jul/2021
});
Change your location and temperature scale (celius, fahrenheit) like such:
const GLOBAL_CONFIG = new Config({
// ...
temperature: {
location: 'New York',
scale: 'C'
}
});
For the live crypto status, provide a crypto coin and a FIAT currency. Example:
const GLOBAL_CONFIG = new Config({
// ...
crypto: {
coin: 'ETH', // BTC, LINK, DOGE etc
currency: 'USD', // EUR, JPY, BRL etc
refreshIn: 15 // refresh time (in seconds)
},
});
- No external libraries
- Web component based
- Status bar components
- Clock/Date
- Live crypto
- Current weather
-
REFACTOR
Show weather location on hover
-
-
MAYBE
RSS reader - Add new panels
- Store last visited panel
- Quick search panel
- Todo/schedule panel
- Reordering
- Task priority
- Task reminder
-
MAYBE
Sync todo with google calendar
-
- Link to external URL
- Filter by task status (TODO/DONE)
- Filter by task priority
- Clean all tasks button
- Edit task button
-
MAYBE
Subtasks w/ progress bar -
MAYBE
Subsections for todo DEADLINE ("today", "upcoming")
- Links section
- Add new links button
- Add link icon
- Drag/drop reorganize
- Configuration
- Disable components
- Change keybindings
- Import/export settings
- Randomize banner gifs
- Toggle status bar sections
- Status bar tab indicator (roman numerals, hiragana, numbers)
- Colorscheme manipulation
-
MAYBE
Optional sound fx
-
REFACTOR
Unify storage into a single JSON object - Create favicon
- Keybinding cheatsheet
- Verify updates on startup