{"id":27464760,"url":"https://github.com/mahmoudelshimi/note","last_synced_at":"2026-05-09T09:46:03.602Z","repository":{"id":287760751,"uuid":"965696234","full_name":"mahmoudElshimi/note","owner":"mahmoudElshimi","description":"A lightweight, pass-inspired note management system with optional GPG encryption.","archived":false,"fork":false,"pushed_at":"2025-04-14T10:15:53.000Z","size":13,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-04-15T23:14:42.732Z","etag":null,"topics":["bash","foss","linux","mind-mapping","note","shell","unix","unix-p"],"latest_commit_sha":null,"homepage":"","language":"Shell","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/mahmoudElshimi.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2025-04-13T18:06:01.000Z","updated_at":"2025-04-14T10:15:56.000Z","dependencies_parsed_at":"2025-04-13T19:43:25.268Z","dependency_job_id":"3ee41d07-8a4a-4708-b5f0-dacad35976e8","html_url":"https://github.com/mahmoudElshimi/note","commit_stats":null,"previous_names":["mahmoudelshimi/note"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mahmoudElshimi%2Fnote","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mahmoudElshimi%2Fnote/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mahmoudElshimi%2Fnote/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mahmoudElshimi%2Fnote/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/mahmoudElshimi","download_url":"https://codeload.github.com/mahmoudElshimi/note/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":249167457,"owners_count":21223508,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["bash","foss","linux","mind-mapping","note","shell","unix","unix-p"],"created_at":"2025-04-15T23:14:57.744Z","updated_at":"2026-05-09T09:46:03.597Z","avatar_url":"https://github.com/mahmoudElshimi.png","language":"Shell","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Note - Simple Unix CLI Note Manager with [Encryption]\n\nA lightweight, pass-inspired note management system with optional GPG encryption.\n\n## Features\n- Dual storage modes: Plain text or encrypted\n- Hierarchical note organization\n- Multi-line note support\n- Clipboard integration with auto-clear\n- Built-in search functionality\n- Git version control integration\n- QR code generation for sharing\n\n## Installation\n\n```bash\ngit clone https://github.com/mahmoudElshimi/note.git\nchmod +x note/note\ncp note/note /to/your/path/\n```\n\n\n### Dependencies\n```bash\n# Arch Linux\nsudo pacman -S  bash  gnupg  tree git shred wipe\n\n# Debian/Ubuntu\nsudo apt install tree gpg xclip git shred wipe\n\n# RHEL/CentOS\nsudo yum install tree gnupg xclip git shred wipe\n```\n\n## Basic Usage\n\n### Store Structure\nNotes are stored in:\n```\n~/.note-store/\n├── work/\n│   ├── project1\n│   └── meeting_notes.gpg\n└── personal/\n    └── ideas\n```\n\n### Core Commands\n```bash\n# Create note\nnote add work/project_ideas\n\n# Edit note\nnote edit work/project_ideas\n\n# View note\nnote show work/project_ideas\n\n# List notes\nnote ls\n\n# Search notes\nnote find project\n\n# Search content\nnote grep \"important\"\n\n# Delete note\nnote rm old/note\n```\n\n## Encryption\n\n### Create Encrypted Note\n```bash\nnote add -e secrets/api_keys\n```\n\n### Edit Encrypted Note\n```bash\nnote edit -e secrets/api_keys\n```\n\n## Configuration\n\n### Environment Variables\nAdd to ~/.bashrc or ~/.zshrc:\n```bash\n# Change storage location\nexport NOTE_STORE_DIR=\"$HOME/my-notes\"\n\n# Set preferred editor\nexport EDITOR=\"vim\"\n\n# Clipboard timeout (seconds)\nexport NOTE_CLIP_TIME=30\n```\n\n### Git Integration\n```bash\n# Initialize version control\nnote git init\n\n# View history\nnote git log\n```\n\n## Advanced Usage\n\n### Clipboard Operations\n```bash\n# Copy to clipboard\nnote show -c work/meeting_notes\n\n# Generate QR code\nnote show -q contact_info\n```\n\n### Bulk Operations\n```bash\n# Find all TODOs\nnote grep \"TODO\"\n\n# Backup notes\ncp -r ~/.note-store ~/note-backup\n```\n\n## Troubleshooting\n\n### GPG Errors\n```bash\ngpg --generate-key\n```\n\n### Clipboard Issues\n```bash\n# X11\ninstall xclip\n\n# Wayland\ninstall wl-clipboard\n```\n\n## notemenu - Quick Note Selection Interface\n\n### Description\nA dmenu-based interface for quickly finding and accessing notes from your terminal or window manager.\n\n### Features\n- Fuzzy-find notes with dmenu/rofi\n- Supports both X11 and Wayland\n- Two interaction modes:\n  - Copy to clipboard (default)\n  - Direct typing into focused window (`--type` flag)\n- Shows full note paths (e.g., \"work/projects/backend\")\n- Works with both encrypted (.gpg) and plain text notes\n\n### Installation\n```bash\nchmod +x notemenu\nsudo cp notemenu /path/to/ur/path\n```\n\n## License\nMIT/X License © 2025 mahmoudElShimi \u003cmahmoudelshimi@protonmail.ch\u003e\n\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmahmoudelshimi%2Fnote","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmahmoudelshimi%2Fnote","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmahmoudelshimi%2Fnote/lists"}