···1717On first run, neomd creates `~/.config/neomd/config.toml`. Edit it with your IMAP/SMTP credentials:
18181919```sh
2020-nano ~/.config/neomd/config.toml
2020+vim ~/.config/neomd/config.toml
2121```
22222323Then run `./neomd` again.
···41414242Reading an email:
4343
4444+4545+4646+## Home Screen Shortcuts
4747+4848+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.
4949+5050+Create the shortcut scripts in Termux:
5151+```sh
5252+mkdir -p ~/.shortcuts
5353+5454+# Launch neomd
5555+echo '#!/data/data/com.termux/files/usr/bin/bash
5656+cd ~/neomd-git && ./neomd' > ~/.shortcuts/neomd
5757+chmod +x ~/.shortcuts/neomd
5858+5959+# Update and rebuild neomd
6060+echo '#!/data/data/com.termux/files/usr/bin/bash
6161+cd ~/neomd-git && git pull && go build -o neomd ./cmd/neomd' > ~/.shortcuts/neomd-update
6262+chmod +x ~/.shortcuts/neomd-update
6363+```
6464+6565+Then in Shortcut Maker → **Termux → Shortcut** → select `neomd` or `neomd-update` → add to your app drawer.
44664567## Notes
4668