A minimal email TUI where you read with Markdown and write in Neovim. neomd.ssp.sh/docs
email markdown neovim tui
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

helper script for demo

sspaeti 0950d22b f8e1bcb4

+7 -10
+7 -10
scripts/reset-demo.sh
··· 21 21 echo " [ ] Welcome marker already absent" 22 22 fi 23 23 24 - # 2. Clear demo screener lists 25 - cleared=0 26 - for list in screened_in.txt screened_out.txt feed.txt papertrail.txt spam.txt; do 27 - path="$CONFIG_DIR/lists/$list" 28 - if [ -f "$path" ] && [ -s "$path" ]; then 29 - > "$path" 30 - cleared=$((cleared + 1)) 31 - fi 32 - done 33 - echo " [x] Cleared $cleared screener list(s)" 24 + # 2. Remove demo screener lists directory (recreated on next launch) 25 + if [ -d "$CONFIG_DIR/lists" ]; then 26 + rm -rf "$CONFIG_DIR/lists" 27 + echo " [x] Removed lists directory" 28 + else 29 + echo " [ ] Lists directory already absent" 30 + fi 34 31 35 32 # 3. Clear demo command history 36 33 if [ -f "$DEMO_CACHE_DIR/cmd_history" ]; then