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.

android app (shortcut) for open and update

sspaeti dfc4a4fb 37b22c2b

+23 -1
+23 -1
docs/android.md
··· 17 17 On first run, neomd creates `~/.config/neomd/config.toml`. Edit it with your IMAP/SMTP credentials: 18 18 19 19 ```sh 20 - nano ~/.config/neomd/config.toml 20 + vim ~/.config/neomd/config.toml 21 21 ``` 22 22 23 23 Then run `./neomd` again. ··· 41 41 42 42 Reading an email: 43 43 ![neomd](../images/android-reading.png) 44 + 45 + 46 + ## Home Screen Shortcuts 47 + 48 + Install [Shortcut Maker](https://play.google.com/store/apps/details?id=rk.android.app.shortcutmaker) from the Play Store to launch neomd and update it as home screen app icons. 49 + 50 + Create the shortcut scripts in Termux: 51 + ```sh 52 + mkdir -p ~/.shortcuts 53 + 54 + # Launch neomd 55 + echo '#!/data/data/com.termux/files/usr/bin/bash 56 + cd ~/neomd-git && ./neomd' > ~/.shortcuts/neomd 57 + chmod +x ~/.shortcuts/neomd 58 + 59 + # Update and rebuild neomd 60 + echo '#!/data/data/com.termux/files/usr/bin/bash 61 + cd ~/neomd-git && git pull && go build -o neomd ./cmd/neomd' > ~/.shortcuts/neomd-update 62 + chmod +x ~/.shortcuts/neomd-update 63 + ``` 64 + 65 + Then in Shortcut Maker → **Termux → Shortcut** → select `neomd` or `neomd-update` → add to your app drawer. 44 66 45 67 ## Notes 46 68