https://github.com/alon-albalak/self-reminder-widget
A simple widget to bring ideas to top of mind (productivity, research, or any other ideas)
Science Score: 26.0%
This score indicates how likely this project is to be science-related based on various indicators:
-
○CITATION.cff file
-
✓codemeta.json file
Found codemeta.json file -
✓.zenodo.json file
Found .zenodo.json file -
○DOI references
-
○Academic publication links
-
○Academic email domains
-
○Institutional organization owner
-
○JOSS paper metadata
-
○Scientific vocabulary similarity
Low similarity (13.4%) to scientific vocabulary
Repository
A simple widget to bring ideas to top of mind (productivity, research, or any other ideas)
Basic Info
- Host: GitHub
- Owner: alon-albalak
- License: mit
- Language: JavaScript
- Default Branch: main
- Size: 53.7 KB
Statistics
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
- Releases: 0
Metadata Files
README.md
Self-Reminder Widget
A productivity-focused Electron desktop widget that displays daily reminders from your markdown notes. The app automatically rotates content each day to keep important concepts and practices visible throughout your workday.
Features
- Daily Content Rotation: Automatically displays different content each day using date-based seeding
- YAML Frontmatter Support: Renders metadata (Type, Status, tags) with styled badges
- Interactive Controls:
- Refresh button for random content selection
- Folder selection for choosing markdown directories
- Native Styling: macOS-native appearance with blur effects and system typography
- Background Operation: Runs continuously with minimal system impact
- Auto-start Support: Can be configured to launch at system startup
- Obsidian Link Support: Renders internal
[[links]]from Obsidian-style markdown
Installation
Prerequisites
- Node.js (v16 or higher)
- npm or yarn
Development Setup
Clone the repository:
bash git clone https://github.com/your-username/self-reminder-widget.git cd self-reminder-widgetInstall dependencies:
bash npm installStart the application:
bash npm start
Building for Distribution
macOS
bash
npm run build
This creates a .dmg file in the dist/ folder.
Linux
bash
npm run build
This creates an .AppImage or .deb file in the dist/ folder.
Usage
First Launch
- Launch the application
- Click the folder button (📁) in the widget header
- Select a folder containing your markdown files
- The widget will display content from your selected folder
Daily Operation
- Content automatically changes each day at midnight
- Click the refresh button (↻) for a random note anytime
- The widget stays visible and updates throughout the day
Markdown File Format
Your markdown files should include YAML frontmatter for best results:
```markdown
Type: note Status: active
tags: [#productivity, #goals, #workflow]
Your Content Here
This is your productivity reminder content... ```
Auto-Start Setup
macOS
- Build and install the app
- Open System Settings → General → Login Items
- Add "Self-Reminder Widget" from Applications
- Enable launch at startup
Linux
Create a .desktop file in ~/.config/autostart/:
ini
[Desktop Entry]
Type=Application
Exec=/path/to/self-reminder-widget
Name=Self-Reminder Widget
Comment=Daily productivity reminders
X-GNOME-Autostart-enabled=true
Configuration
The app stores your folder selection preferences automatically. Settings are preserved between sessions.
Development
Project Structure
main.js- Electron main processrenderer.js- Renderer process with markdown parsingindex.html- Widget structurestyle.css- Native stylingsettings.js- Configuration management
Key Technologies
- Electron for cross-platform desktop app
- marked.js for markdown rendering
- js-yaml for frontmatter parsing
- Native CSS for system integration
Contributing
- Fork the repository
- Create a feature branch (
git checkout -b feature/amazing-feature) - Commit your changes (
git commit -m 'Add amazing feature') - Push to the branch (
git push origin feature/amazing-feature) - Open a Pull Request
License
This project is licensed under the MIT License - see the LICENSE file for details.
Acknowledgments
- Built with Electron
- Markdown parsing by marked.js
- YAML parsing by js-yaml
- Inspired by productivity workflows and daily reminder practices
Owner
- Name: Alon Albalak
- Login: alon-albalak
- Kind: user
- Location: Santa Barbara, CA
- Website: https://alon-albalak.github.io/
- Twitter: AlbalakAlon
- Repositories: 5
- Profile: https://github.com/alon-albalak
PhD student, Natural Language Processing and Deep Learning
GitHub Events
Total
- Push event: 2
- Create event: 1
Last Year
- Push event: 2
- Create event: 1
Dependencies
- 355 dependencies
- electron ^36.4.0 development
- electron-builder ^25.1.8 development
- js-yaml ^4.1.0
- marked ^15.0.12