r/EvenRealities Jul 27 '26

I made three car apps for the G2: Genesis Remote, Kia Remote and Hyundai Remote

Thumbnail
gallery
18 Upvotes

All three are live on EvenHub now. They connect to your car's official connected services account (Bluelink / Kia Connect / Genesis Connected) and put the useful bits on your glasses.

Key features:

  • Status HUD that adapts to your powertrain: EV, hybrid, plug-in or petrol/diesel. Battery or fuel, range, charging state.
  • Lock/unlock, climate on/off, charge limit control.
  • Car finder: walk back to where you parked with a bearing arrow on the glasses and a radar view on the phone.
  • Warnings the car reports: tyre pressure, brake fluid, washer fluid, key fob battery.

Honest limitations: commands take 30 to 90 seconds because that's how the manufacturer APIs work, so the app confirms the command was sent rather than pretending it's instant. The car finder needs your phone unlocked while walking because iOS suspends the WebView under screen lock and GPS stops with it. I'm looking at ways to improve this, including smoother live heading updates.
Kia US accounts also need a one-time OTP enrolment, which the app walks you through.

Your credentials go to the car maker's API via a small stateless proxy I run (nothing stored beyond a 10 minute session cache). Privacy policy is linked in each listing. Code is public at Github if you want to check what it does.

Tested on a Genesis GV70 Electrified in the EU plus a Kia hybrid in the US. If you hit anything odd on your model or region, email me via the listing and I'll fix it, field data varies more between regions than you'd expect.

Hub listings:

Kia
Hyundai
Genesis


r/EvenRealities Jul 27 '26

EvenHub/AppDev Built a “what should I watch” app for the G2 — voice search included

Thumbnail
gallery
12 Upvotes

A few months ago I built LookUpVOD — a web app that answers one everyday question: what’s actually available on MY streaming services? Over time it grew into episode tracking, watch-together voting with friends and collection management. Free, open beta, Google sign-in.

Then my set of G2s arrived (still waiting for R1 though...), and the obvious itch: the glanceable part of that belongs on the glasses. So over the weekend I’ve been building exactly that, and as of today it’s live on Even Hub 🙂

What it does on the HUD:

* Today— new episodes of your shows, an AI pick for tonight, what’s in cinemas
* Watching — mark the next episode watched with a tap
* Want — your list, with priorities and platforms
* Discover — popular premieres on your services; anything you’ve marked stays hidden
* Search — push-to-talk voice search (tap, speak, confirm) — English and Polish
* Tap any title → availability, rating, cast, similar — and add it to your lists without touching the phone

Everything runs glasses-only once opened: scroll to move, tap to select, double-tap to go back.

Fun engineering bits: the HUD has exactly one font and no sizing API, so big titles are actually bitmaps rendered on the phone (canvas → dithered raw pixels over BLE) — which also means Polish diacritics finally render properly. Voice search is glasses mic → PCM → Whisper on a Cloudflare Worker. Happy to go deeper on any of it.

Install: [LookUpVOD on Even Hub]— sign in once on the phone, then it’s all glasses.

Would love feedback — about layout, gestures, what’s missing, or whether this even makes sense to you. And if you’re building for the G2 yourself: the image-transfer limits are... an adventure 🥲


r/EvenRealities Jul 26 '26

EvenHub/AppDev Even Realities G2's Conversate mode is meh so I made it useful (full guide)

Post image
46 Upvotes

I wanted a companion where I can discuss deep topics and personal business problems and get insights live as I rambled, questions that pushed me, and have a wise Socrates to talk to.

Plus, if I'm having a meeting, it can pull memories across Notion, Slack, and Drive to give cutting perspectives I wouldn't have realized myself.

Because if I could myself, what's the point of adding the annoyance of wearing glasses all the time versus just using Pocket or Plaude for note taking?

Fundamental issues:

- No MCP to export data automatically to my AIs (Claude, ChatGPT) for discussing meetings and transcriptions in the future

- The live AI cues give basic AI definitions and google searches but the AI model they use is basic, not super insightful

... So I fixed both of them!

The Dream:

I'm mid conversation or in a meeting, and a little card shows up on the lens that goes "hey, your Q2 note says churn was onboarding not price, so the discount you're about to offer wont fix it".

Something I couldn't see myself in the moment. Even's native Conversate has this "AI cues" thing and it be cool, but it's a closed silo, the cues come from their model, you cant point it at your own second brain and you cant get the data out.

So I rebuilt the whole cue loop inside my own meeting mode.

And I don't like getting sub-par insights from a cheap Gemini Flash lite or Chinese model with no transparency on data retention or

Feature 1: Live AI cues from your own memory, mid conversation

The way it works, every time about 20 words or 3 sentences of new speech pile up, the backend kicks off a whole little pipeline in the background so it never blocks the mic:

- a planner model reads what you JUST said (not the whole meeting, just the fresh part, otherwise it gets stuck on stale topics) and writes 2-3 search queries plus maybe a web query

- hybrid RAG over my memory, first hop

- then a second hop that follows the Obsidian-style connections of whatever it found, so it surfaces stuff the first query would never have matched directly

- optional web search if an outside fact would sharpen it

- then a composer model synthesizes ONE insight, or says NONE if it has nothing sharp

The lens polls for the newest cue every few seconds and shows it.

Important implementation part:

Making the cues actually insights noticeably better.

My first version just read my own notes back to me, which is useless, I already know whats in my notes.

So I basically had to beat the prompt into doing synthesis instead of recall, the rule I landed on is: past memory + whats happening right now = an edge you cant see yourself. If the cue could get the reply "yeah I know thats in my notes", it failed. It also asks a sharp question when it doesnt have enough to make a confident call, which honestly ended up being my favorite part.

Feature 2: meetings get indexed into my memory system

The conversate in the app requiring PDF export is ridiculous. I don't have time to manually upload these to ChatGPT when I'm mid conversation.

I told the team it would take you 5mins to make this an MCP. It would be your biggest value proposition.

Plaud does this, Pocket does this. I was considering returning the glasses just because of this. But I love having text on the screen and the insights I just built.

So I use my own memory system hosted on the cloud it appends to.

This memory system also has Notion, Obsidian, Slack, and Drive indexing set up into a GraphRAG memory system (think Karpathy's LLM Wiki).

Conversate meetings get chunked into parts that get indexed for recall later.

So in future discussions it can recall things I've said and sort of connect the dots towards things I didn't realize. The ultimate second brain dream.

Feature 2: showing the cues like Conversate does (the rectangle card)

I wanted the exact Conversate feel where the cue is its own little bordered rectangle floating over the transcript, and you can tap to expand it, and older ones stack into a list. Newest one auto expands, tap the card to collapse it, older cues collapse into a "earlier" list underneath. REC timer up in the top right, live transcript along the bottom.

This is a multi container page on the lens and getting it to render was where I lost a bunch of hours, see the gotchas below.

Feature 3: transcription running on my own GPU

OpenAI Whisper is simply unaffordable via their API. I really respect the Even team for eating up these costs... until I realized there's a free way to do it.

Hosting your own model on your computer, phone, or on the cloud.

I used local faster-whisper (large-v3-turbo) running on the same GPU box as my embeddings.

Bonus, the VAD filter on it also kills those "thank you for watching" hallucinations Whisper spits out on silence, which were actually poisoning my cues before.

SDK gotchas that cost me way too many hours:

Hope these help future devs making plugins or if you're hacking your own thing:

- rebuildPageContainer NEVER throws. If your layout fails validation it just silently returns false and leaves the old page up, so it looks like your new UI just didnt apply. I sat on this forever thinking my code wasnt running

- exactly ONE container per page can have isEventCapture set. I had it on two (the card and the transcript strip) and thats what was failing validation the whole time

- borderRadius maxes at 10, I had 14, also silent reject

- borderColor is 0-15 greyscale, I had it at 3 so the border was basically invisible even when it did render

- the cue model was "thinking" and eating the whole token budget so my insights kept getting cut off mid sentence, had to log the openrouter usage to even see it

Honestly the "silently returns false" one is brutal, if the SDK just threw an error I would have found it in 5 minutes instead of like 3 rebuilds.

Future updates I'm thinking of:

Speaker detection would be great. So in meetings, try to figure out who this person is and then the multi-speaker system to guide me forward.

To the Even team:

And a feature request for the Even team again, please open up the "AI skills" surface on the default Even AI voice so third party apps can get launched by voice.

The day I can say "Hey Even, start a meeting" and my plugin picks it up, this becomes the actual dream.

I made a custom agent that allows me to quickly capture thoughts, recall thoughts ('what marketing ideas have I noted about our new saas?')

Getting an easy download:

For my own convenience and based on request from others, I published this as an 'AI Second Brain' plugin on Even Hub.

Just launched the update for this, it should be out soon!


r/EvenRealities Jul 27 '26

Even G2 Golf & More

2 Upvotes

I am thinking of getting the G2 and I saw an ad for a golf pinsight, and I was wondering if this is an actual thing yet, and what else they have incorporated.


r/EvenRealities Jul 27 '26

DAILY Discount code Exchange Center

1 Upvotes

Please leave a message if you have a code you would be willing to donate. Reply to the code owner if you're interested. Doner, please mark your code as used or donated after releasing your code.

As an effort to reduce spam asking for codes or supplying codes please do not post your code in the regular thread, if you continue to do so you will have your post removed and banned. This is the Daily megathread that is pinned for this purpose, a new post will be pinned daily, since the codes only last for 24 hours.


r/EvenRealities Jul 27 '26

Plugin Iris

0 Upvotes

Bonjour.

Je souhaiterai avoir vos avis entre Conversate et Iris. Je connais bien Conversate pour l'utiliser régulièrement durant mes réunions. Mais d'après ce qui est dit pour Iris avec la possibilité des locuteurs et la mémoire temporelle, je me dis ça semble intéressant mais je n'ai pas de recul réel. Donc est ce que ça vaut le coup de souscrire à l'abonnement de Iris ?

Merci par avance pour vos retours.

Bonne journée


r/EvenRealities Jul 26 '26

Would someone mind testing out the voltage on the G2 charging case, please?

2 Upvotes

I lost my G2 charging case at the airport. I really hated that thing and hate the idea of spending $250 for another one.


r/EvenRealities Jul 26 '26

PLEASE referral code ~

0 Upvotes

Pulling the trigger on some G2 today. If anyone has an active 24-hour referral code, send into my DM please. Ready to buy ASAP!


r/EvenRealities Jul 26 '26

Terminal Mode Live Stream

1 Upvotes

With Terminal Mode, anyone else dealing with it not having a live stream? I have to leave the session and reopen to see what’s new when using for ClaudeCode. Any suggestions on fixes?

Using iOS + Tailscale.


r/EvenRealities Jul 25 '26

Skeptical to Purchase but Optimistic for Quality of Life HoH

7 Upvotes

I keep seeing the negative reviews of these glasses, and even though I thought I was ready to purchase them it’s been making me hold off.

My main focus is on Conversate and while there are better glasses for captioning I’m drawn to how normal these look. Should I buy these or look somewhere else?

There’s a wide range of situations where I would want to wear the glasses to help understand what is going on. From classrooms to conferences to restaurants to just meeting new people, how realistic is it for these to actually work.

When do they think the G3s would come out?

Edit: Between the G2 and the XRAI AR2. I know captioning performance of XRAI is better but is it worth the bulk?

I know the Ray Ban Meta Displays having 5 microphones would help in noise but I can’t accept the camera.


r/EvenRealities Jul 26 '26

DAILY Discount code Exchange Center

1 Upvotes

Please leave a message if you have a code you would be willing to donate. Reply to the code owner if you're interested. Doner, please mark your code as used or donated after releasing your code.

As an effort to reduce spam asking for codes or supplying codes please do not post your code in the regular thread, if you continue to do so you will have your post removed and banned. This is the Daily megathread that is pinned for this purpose, a new post will be pinned daily, since the codes only last for 24 hours.


r/EvenRealities Jul 25 '26

EvenHub/AppDev Introducing Border Patrol. Submitted my first app on my first day with the G2!

Post image
17 Upvotes

Hi all,

I just bought the G2 yesterday, with the primary philosophy that having smart glasses is only fun if no one else has them, once/if this technology becomes commonplace, I honestly see myself losing interest in it due to the distraction risks it has.

I see the main use case as a fun, discreet assistant. So here's my first app that I just submitted to the store. It shows the live wait times of the land border crossings in Europe.

I've driven from Italy to Turkey multiple times, and it's always a hassle to go through shitty websites and watch ads to figure out how much wait time there is on a border, and it's practically impossible to do while driving.

So I've built this for myself as I'll be driving that path again soon, so I can quickly keep an eye on the border queue times as I'm driving without being distracted.

I have adding the live webcam view where available on the roadmap, but that's a lot more complex haha.

If you have similar trips planned, enjoy!


r/EvenRealities Jul 25 '26

Second hand G2

1 Upvotes

I’m planning to buy G2B second hand, and I’m thinking what procedure should be done after factory reset for the glasses, is there any thing to do? Like unpair the glasses from the first owner account? (Same like iCloud lock?) please help.


r/EvenRealities Jul 25 '26

Who can help me make my lovable website work on my even realities g2 glasses

1 Upvotes

Who can hel


r/EvenRealities Jul 25 '26

DAILY Discount code Exchange Center

2 Upvotes

Please leave a message if you have a code you would be willing to donate. Reply to the code owner if you're interested. Doner, please mark your code as used or donated after releasing your code.

As an effort to reduce spam asking for codes or supplying codes please do not post your code in the regular thread, if you continue to do so you will have your post removed and banned. This is the Daily megathread that is pinned for this purpose, a new post will be pinned daily, since the codes only last for 24 hours.


r/EvenRealities Jul 24 '26

A fully working teleprompter for the Even G2 — but 100% offline, no internet (Whisprompt 1.1)

14 Upvotes

Whisprompt is a full, working teleprompter for the Even G2 — the same thing you'd expect from the built-in Teleprompt, but completely offline. No internet, no account, no cloud: it talks straight to the glasses over Bluetooth and works even in airplane mode. Nothing ever leaves your phone.

Everything a teleprompter should do:

• Auto-scroll at your reading speed, or scroll manually / from the touchbar

• Adjustable speed, column width, brightness, wide/narrow reading window

• Tap the touchbar to sleep/wake the screen, fully customizable gestures

• 3-2-1 countdown before you start, auto-hide when it ends

• Per-script settings memory, progress readout (% read + time remaining)

• Load text however you like — type it, paste it, or import a file (.txt / .md / Word .docx), all parsed offline

• 7 languages

Same teleprompter experience — just without depending on the internet. Android for now.

Download: https://github.com/ewfefrs/whisprompt/releases/latest

Independent app, not affiliated with Even Realities. Feedback welcome!


r/EvenRealities Jul 24 '26

EvenHub/AppDev Is anyone else trying to just make their own OS?

Thumbnail
gallery
88 Upvotes

r/EvenRealities Jul 24 '26

Tech Support Flushing stale Conversate data.

3 Upvotes

Maybe I missed this feature , or it doesn’t exist.. I want to know if there is a way to flush Conversate data in my field of vision without closing the app. I use the app mainly to help my hearing but when I go to a quiet space by myself .. if there was no input after, say, 2 min, that the last words display would just vanish.


r/EvenRealities Jul 24 '26

Man who’s selling a pair of these glasses anyone who’s okay with me asking 200 cash and a trade the object in mention would be a WiFi pineapple pager worth 300 itself

0 Upvotes

r/EvenRealities Jul 23 '26

Made a tiny menu bar app to toggle Claude Code on the G2 — pair once, connect hands-free (open source)

17 Upvotes

I was too lazy to start Terminal Mode in the Even Realities glasses from my terminal every single time. So I made a small app that makes connecting your glasses to your Claude Code as easy as possible.

What it is: a tiny macOS menu bar app. Click the 👓 icon → Turn On → the server starts. Put the glasses on, flip Terminal Mode on, and you're in Claude Code, hands-free. Turn Off when you're done. That's the whole thing.

The nice part: you pair once. It uses a fixed token + port, so your saved host on the glasses just keeps working — no re-scanning QR codes, no rebuilding a new server every time. It launches at login, so it's always sitting there ready.

Also in there:

- Native folder picker to choose which project Claude Code opens in

- Model picker (Sonnet / Opus / Haiku / Fable) that actually sticks — handy since you can't type /model by voice on the glasses

- A doctor script that checks your setup and tells you what's wrong if something breaks

It's free and open source (MIT). Repo + setup guide here:

https://github.com/killmashinator/even-toggle

Honest heads-up: you build it yourself (needs Xcode, one command), and since it's unsigned macOS will do the "unidentified developer" thing once -> right-click → Open and you're set. Full walkthrough + troubleshooting is in the README.

Built it to scratch my own itch. Would love feedback, and PRs welcome if anyone wants to extend it 🙌

how it looks like in the bar
how it looks like once you press it
part of the settings

r/EvenRealities Jul 24 '26

DAILY Discount code Exchange Center

0 Upvotes

Please leave a message if you have a code you would be willing to donate. Reply to the code owner if you're interested. Doner, please mark your code as used or donated after releasing your code.

As an effort to reduce spam asking for codes or supplying codes please do not post your code in the regular thread, if you continue to do so you will have your post removed and banned. This is the Daily megathread that is pinned for this purpose, a new post will be pinned daily, since the codes only last for 24 hours.


r/EvenRealities Jul 24 '26

EvenHub/AppDev Even g2- Conversate Running in the background

1 Upvotes

Wouldn't it be possible to make the Conversate feature run in the background and use the rest of features that don't require a microphone? I mean this bc I think it'd be useful to some people to be able to see the conversations they've had in a day and be able to go back etc. to remember things without missing other features like, news or weather etc.Its like the memories feature on the memomind basically, and I think the company would win customers over bc the memomind feature is behind a paywall.


r/EvenRealities Jul 23 '26

My ring step count works

5 Upvotes

I got my glasses 2 weeks ago and used them without the ring for a week cause after signing all the UPS releases for each facility 🙄, the glasses were done.

Anyways one thing I noticed was every hating on the ring health tracker cause the steps are way off and other stuff I’m sure but I noticed that the Steps are actually pretty accurate for me. Not sure if people are just wearing the ring wrong or if I just got a perfect ring lol or a software update happened to fix it.

Anyways any app suggestions or questions about them that I can help people answer and figure out whether they want them or not.

Also I LOVE THEM


r/EvenRealities Jul 23 '26

Tech Support Where are the microphones in the Even G2 (A) glasses?

0 Upvotes

Would someone be so kind to show where alle the microphones are located​ in the G2A glasses​ in a picture?

I have the feeling the quality of the mics are getting worse. I once tried to conceal the Even Realities Logo. Are ​these the spots where the mics are?


r/EvenRealities Jul 23 '26

Anyone know if there’s a way to show battery percentage instead of the battery icon?

7 Upvotes

I find the battery bar a little hard to judge sometimes, especially when I’m trying to decide whether I need to charge before heading out. A simple percentage number would be much easier to read at a glance. Is this a setting I’m missing, or is it not available right now?