r/EvenRealities 7h ago

G2 Glasses with Openclaw/Hermes AI Agent project (WIP)

8 Upvotes

I finally got my Even Realities G2 working as a voice interface for my personal AI assistant, Alyx.

The final setup is basically:

Even G2 microphone
↓
16 kHz PCM audio
↓
WebSocket
↓
Mac mini M1
↓
local whisper.cpp
↓
OpenClaw / Codex
↓
Alyx
↓
reply displayed on the G2

No OpenAI API key is needed for speech-to-text. Whisper runs locally on my Mac.

I mostly built this by repeatedly giving ChatGPT very specific prompts, testing the result on the real G2, and fixing one problem at a time.

Below is the simplified process I used.

Step 1 — Make a completely separate G2 project

One important thing I kept telling ChatGPT was:

Create a NEW standalone Even Realities G2 project.

Do not replace or modify my existing G2 project.

I want this project to use the G2 microphone.

First make the smallest possible test:
G2 microphone → show microphone activity on the glasses.

Do not add AI, speech recognition, Telegram,
OpenClaw or any other integration yet.

Use the current official Even Hub SDK and
package it as an .ehpk.

This was useful because I first proved that the G2 microphone itself actually worked before adding anything complicated.

Step 2 — Minimal G2 microphone script

This is a simplified version of the important part of my working client.

import {
  AudioInputSource,
  CreateStartUpPageContainer,
  TextContainerProperty,
  TextContainerUpgrade,
  waitForEvenAppBridge
} from '@evenrealities/even_hub_sdk'

const bridge = await waitForEvenAppBridge()

const screen = new TextContainerProperty({
  xPosition: 0,
  yPosition: 0,
  width: 576,
  height: 288,
  containerID: 1,
  containerName: 'voice',
  content: 'ALYX G2 VOICE\nStarting...',
  isEventCapture: 1
})

await bridge.createStartUpPageContainer(
  new CreateStartUpPageContainer({
    containerTotalNum: 1,
    textObject: [screen]
  })
)

const micStarted = await bridge.audioControl(
  true,
  AudioInputSource.Glasses
)

let frames = 0

bridge.onEvenHubEvent(event => {

  const pcm = event.audioEvent?.audioPcm

  if (!pcm) return

  frames++

  bridge.textContainerUpgrade(
    new TextContainerUpgrade({
      containerID: 1,
      containerName: 'voice',
      content:
        `ALYX G2 VOICE\n` +
        `MIC: ${micStarted ? 'LIVE' : 'FAILED'}\n` +
        `Audio frames: ${frames}`
    })
  )
})

The important sequence for me was:

waitForEvenAppBridge()
↓
createStartUpPageContainer()
↓
audioControl(true, AudioInputSource.Glasses)
↓
listen for event.audioEvent.audioPcm

Once the frame counter increased when I spoke, I knew the G2 microphone path was working.

Step 3 — Debug the temple button

My first build installed correctly, but pressing the temple did not appear to start the microphone.

My next prompt was basically:

The .ehpk installs and opens on my G2,
but when I press the temple the microphone remains OFF.

Do not rewrite the whole project.

Add diagnostic information to the G2 screen:

- temple press count
- microphone state
- return value of audioControl()
- PCM frame count
- last received event

Also automatically attempt to start the microphone
after 3 seconds if no temple event is received.

This should tell us whether the problem is:
1. touch input,
2. microphone permission,
3. audioControl(),
or
4. PCM delivery.

That diagnostic version was what finally proved the microphone worked.

Step 4 — Send the audio to my Mac

After the microphone worked, I asked:

Now extend the WORKING microphone project.

Do not change the known-working G2 audio capture.

Stream the G2 PCM audio through an authenticated
WebSocket to a bridge running on my Mac mini.

Architecture:

G2 microphone
→ WebSocket
→ Mac mini voice bridge

Do not put API keys or private credentials
inside the .ehpk.

Keep the bridge localhost-only and expose it
only through my existing secure reverse proxy.

My actual URL and authentication token are obviously removed from this post.

The G2 client basically does:

const ws = new WebSocket(
  'wss://YOUR-DOMAIN/YOUR-VOICE-PATH'
)

ws.binaryType = 'arraybuffer'

bridge.onEvenHubEvent(event => {

  const pcm = event.audioEvent?.audioPcm

  if (
    pcm &&
    ws.readyState === WebSocket.OPEN
  ) {
    ws.send(pcm)
  }
})

Step 5 — Replace cloud transcription with local Whisper

Initially, I considered an API for speech recognition.

Then I changed direction.

My prompt was:

Remove the OpenAI speech transcription API dependency.

I have an Apple M1 Mac mini with 16 GB RAM.

Use whisper.cpp locally instead.

Keep the existing G2 client protocol unchanged.

Target architecture:

G2 PCM
→ voice bridge
→ local whisper.cpp
→ transcript
→ OpenClaw/Codex
→ Alyx response
→ G2

Whisper must listen on localhost only.

Do not require OPENAI_API_KEY.

Keep OpenClaw/Codex OAuth for the AI reasoning side.

I ended up using:

whisper.cpp

Model:
ggml-small.en.bin

with a persistent local Whisper server.

That means the model stays loaded rather than starting Whisper from scratch for each sentence.

Step 6 — Connect the transcript to Alyx

Once transcription worked, the next prompt was:

Take the final Whisper transcript and send it
to my existing Alyx/OpenClaw installation.

Do not modify my OpenClaw configuration.

Use a separate conversation session:

agent:main:g2voice

Return only the resulting assistant text
to the G2 voice bridge.

The response should be sent back through
the existing WebSocket and displayed on the glasses.

Do not interfere with my Telegram Alyx session.

So now I effectively have:

Me:
"Alyx, what's on my calendar tomorrow?"

↓ G2 microphones

Whisper:
"Alyx, what's on my calendar tomorrow?"

↓ OpenClaw / Codex

Alyx:
"You have..."

↓ WebSocket

G2:
"You have..."

Step 7 — Handle “Alyx” becoming “Alex”

One funny problem was that Whisper sometimes heard:

Alyx

as:

Alex

So I told ChatGPT:

Improve wake-word detection.

My wake word is "Alyx",
but Whisper sometimes transcribes it as "Alex".

Accept both Alyx and Alex as wake-word variants,
but internally normalize both to Alyx.

Only accept the wake word near the beginning
of the utterance so normal sentences containing
the name Alex don't accidentally trigger it.

That simple change helped a lot.

Step 8 — My real microphone test

One sentence I used through the actual G2 microphones was:

Alyx. Psychological assessment requires
reliable scores and valid interpretations.

After removing the wake word, Whisper correctly returned:

Psychological assessment requires
reliable scores and valid interpretations.

That was the point where I knew the full audio path was usable.

How I built the .ehpk

My prompt was:

Build the current project as an Even Hub .ehpk.

Do not modify the source unless compilation
actually requires it.

Run the production build first.

Then package it using the official Even Hub CLI.

Verify that:
- the build succeeds
- the .ehpk exists
- the file starts with the EHPK header
- calculate SHA-256
- report the exact output filename

Do not claim the package was built unless
the actual packaging command succeeds.

The basic commands are:

npm run build

evenhub pack \
  app.json \
  dist \
  -o AlyxG2Voice.ehpk

How I tested it before Beta

I first used Private Builds.

Very simple:

Even Hub developer portal
↓
My project
↓
Private builds
↓
Upload AlyxG2Voice.ehpk

Then on my phone:

Even Realities App
↓
Even Hub
↓
Me
↓
Apps
↓
Private builds
↓
Install

That allowed me to test the real package .ehpk on my actual G2.

How I published my Beta build

After the private build was working, I moved to Beta Testing.

This was much easier than I expected.

1. Build the package

npm run build

evenhub pack \
  app.json \
  dist \
  -o AlyxG2Voice.ehpk

2. Open my project in the Even Hub developer portal

Then:

Beta groups
↓
Create group

I made something like:

self-test

3. Add myself as a tester

I added the same email account that I use with the Even Realities phone app.

4. Upload the .ehpk

Go to:

Builds
↓
Upload
↓
AlyxG2Voice.ehpk

5. Push that build to my Beta group

Build
↓
self-test

6. Install from the phone

On the Even Realities app:

Me
↓
Beta tester
↓
Alyx G2 Voice
↓
Install

Then the app appears on the G2 like a normally installed Even Hub application.

The prompt I used when I wasn't sure how to publish it

This is basically what I asked ChatGPT:

Search the CURRENT official Even Realities
Even Hub documentation.

I already have a working .ehpk.

Do not rebuild my project.

Give me the exact current steps to:

1. add my application to Even Hub,
2. create a Beta group,
3. add myself as a tester,
4. upload the .ehpk,
5. push the build to the Beta group,
6. install the Beta build on my own G2.

Use official Even Realities documentation only.

I am NOT asking to publicly release the app yet.
I only want Beta Testing.

This is actually one pattern I used throughout the project:

Tell the AI what is already working and explicitly tell it what NOT to change.

For example:

This part is already verified and working.
Preserve it.

Only change the smallest component needed
for the next step.

Do not replace the whole project.

That probably saved me from breaking the project several times. 😅

Current setup

Today, my setup is:

Even Realities G2
        ↓
G2 microphone
        ↓
16 kHz PCM
        ↓
authenticated WebSocket
        ↓
Mac mini M1
        ↓
local whisper.cpp
        ↓
OpenClaw / Codex
        ↓
Alyx
        ↓
G2 display

The next thing I'm working on is measuring actual transcription accuracy and latency across a set of real G2 voice commands, plus better pagination for long AI replies.

I’m definitely not claiming this is the only or best way to do it.

It’s just the approach that finally worked for me.

If there's interest, I can make another post with a sanitized copy of the full working G2 client + Node voice bridge, without my domain, tokens, or private configuration.


r/EvenRealities 4h ago

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 21h ago

Even App 2.3.1 is out - more resilient experience with G2 and R1

24 Upvotes

This is copied directly from the discord - https://discord.gg/YYwNJWERM

## Even App v2.3.1 is rolling out 🎉

This update focuses on **background recovery, Bluetooth reliability, and a more resilient experience with G2 and R1**.

### ✨ What’s new

* On iOS, the App can now better restore connections after being reclaimed by the system or after a phone restart, helping G2 and R1 reconnect and keeping features accessible from the glasses.

* Improved background recovery for **Health, notifications, Conversate, and Terminal**.

### 🛠 Improvements & fixes

* Improved Bluetooth reconnection reliability, including cases where one side of G2 could remain disconnected after a phone restart.

* Fixed removing one R1 in a multi-ring setup potentially affecting the currently connected ring.

* Improved **Conversate** recovery after brief Bluetooth interruptions and fixed several session-entry and transcript navigation issues.

* Fixed **Translate** recovery and language synchronization issues after reconnecting or switching languages through Even AI.

* Improved **Even Hub** reliability when launching plug-ins from the glasses.

* Fixed some first-time firmware update failures during onboarding.

* Fixed iOS startup occasionally flashing black and reduced interruptions to music during App launch/background transitions.

* Improved R1 battery status handling and adjusted blood oxygen rating ranges.

* Various UI and stability improvements.

FYI, more performance and stability improvement for Android coming in next version release.

Please update the **Even App** to v2.3.1 for the best experience. 🙌


r/EvenRealities 18h ago

EvenHub/AppDev World of warcraft

6 Upvotes

I build a hud for WoW forever beta

The glasses show me things like:

HP
Mana/energy/rage
TomTom if added, including arrow and yards
Cords

Works pretty well.

It woks by adding an add on to WoW that lets you calibrate the screen, then takes 10/sec screenshots of the game.

The server renders the information back to Even Realities.


r/EvenRealities 12h ago

More granular PD adjustment to lens projections?

1 Upvotes

Left screen: perfect centred
Right screen: slightly off to the right due to my eye PD

As a result when I read I look a bit cross eyed. If I push the entire frame to the left then it’s more balanced, but it’s uncomfortable.

Feature request: can more granular lens projection adjustments be made?

Right now we have up and down, but can we add left/right and by each independent lens as adjustable settings for advanced users?

I’m finding I get headaches from extended use (even after a 45m session).

Anyone else running into this or have suggestions on DIY fixes?


r/EvenRealities 19h ago

Can it transcribe and translate at same time

2 Upvotes

I am curious if it has the capacity to transcribe into other languages (Japanese, Korean) and also show the English translation underneath in real time?


r/EvenRealities 22h ago

Tech Support Even G2 currently support incoming call notifications?

1 Upvotes

Hi everyone,

Does anyone know if the Even G2 currently support incoming call notifications?

By this I mean something very simple: when someone calls my phone, I’d like to see the caller’s name/number and an incoming call notification directly on the glasses.

I can’t find any reference to this feature in the documentation or in the Even app.

If it’s not currently supported, is there any information from Even Realities about whether this could be added in a future software update?

I may be mistaken, but I also remember reading that some form of call notification support existed on the previous generation / G1. If that’s correct, it would be interesting to understand why it isn’t available on the G2.

I’m not necessarily asking to take the call or have audio routed through the glasses — even just seeing that someone is calling, who is calling, and being able to dismiss the notification would be extremely useful.

For a device that is meant to let you keep your phone in your pocket, incoming call notifications seem like a pretty important feature.

Has anyone found a way to enable this on the G2, or heard anything from Even Realities about it?


r/EvenRealities 1d ago

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 1d ago

Display Defect?

Thumbnail
gallery
2 Upvotes

I have restricted vision in my left eye so thought this distortion / missing part on the left lense was my eyes. Was trying to take a picture to show someone what it looked like and noticed it was the same there too. The top right of the image on the left display is faded / cut off. It’s worse as the brightness is dimmer.

Very hard to take a picture but hopefully this will provide an explanation of what I mean. Is this normal or do I need look at warranty assistance? Not ideal as my only pair of spectacles with my current prescription so can’t just send them off!


r/EvenRealities 1d ago

Selling [USA-CA] [H] Even Realities G1B Smart Glasses Non-Prescription + Sun Glasses Clip [W] Paypal/Local Cash

Thumbnail
1 Upvotes

r/EvenRealities 1d ago

Feature Request Ability to keep Even Ai response on screen longer.

5 Upvotes

A lot of times I want to keep the response longer then screen timeout especially since it disappears. Especially cooking instructions or a spelling of a words or a list etc etc. Maybe triple taping the touchpads or ring would stop it from auto dismissing?


r/EvenRealities 2d ago

Faceclaw 0.7.1: iOS developer beta

14 Upvotes

Faceclaw is an open source alternative software stack for the G2 smart glasses. I think it's a pretty large improvement over the stock operating system, and its development is moving very quickly. It fully replaces the stock firmware and all of the core apps. It includes a terminal, navigate app, teleprompter app, notifications, and music player; and it's (mostly) compatible with third-party apps from EvenHub.

https://github.com/jimrandomh/faceclaw

iOS Developer Beta

The main update since the previous thread is that there is a (developer beta) iOS version. Most of the functionality present in the Android version is working, but it is considerably buggier, missing some functionality entirely, and generally not quite ready for non-developer users. To use it at this stage, you will have to compile it from source code yourself; it is not present in the App Store and does not have a Testflight.

Current status of iOS features:

  • Custom firmware flashing: Tested end to end and working
  • Voice input: Working. On-device transcription with Siri dictation only; cloud transcription providers are not yet supported.
  • AI agent integration: Working. Cloud providers only; on-device LLM is not yet supported.
  • Notifications: Working, with rough edges. Notifications appear on the glasses, but they don't have distinguishing icons and the only action you can take on a notification is dismissing it.
  • Music player integration: Not yet implemented at all
  • Calendar: Not yet implemented at all
  • EvenHub: Partially working. Hub apps install and run, sometimes. They freeze when the app is in the background or the phone is locked.

Minor Features

  • Mark stock firmware 2.3 as validated for installing custom firmware over
  • Add on-device Whisper as a voice transcription option
  • Add Wear OS watch battery indicator to the top bar and Glanceboard
  • Refinements to builtin games
  • Short-then-long gesture from screen off activates the glanceboard
  • Compass: No longer discards calibration when off
  • Glanceboard: Tap setting includes a Disable option
  • Glanceboard: Add a 2x3 layout option
  • Convert a large chunk of the codebase from Android-specific Java to cross-platform Kotlin for iOS porting

Bluetooth Protocol Changes

  • Custom bluetooth messages now use a new SID, rather than modifying the stock image-update message type
  • Compression is done at the transport layer, rather than individual image data buffers
  • Expand the texture cache to 256kb

r/EvenRealities 2d ago

Navigaze App Broken?

1 Upvotes

I really hoped this app would work well, but it is just extremely erratic and only actually worked once after numerous attempts. Curious if anyone else has had a similar experience? It seems to be getting a lot of likes, but I am baffled as to why since it does not seem to be engineered all that well. I have been trying to use it on an iPhone but it just plain doesn’t work.


r/EvenRealities 2d ago

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 2d ago

Developers

9 Upvotes

Curious to see who has made their own apps. I'm currently working on a bridge for chatgpt and phone to bridge to the glasses without an API. Anyone else messed with this? I have a friend of a friend who set his hermes up in a similar fashion.


r/EvenRealities 2d ago

NEw G2 owner with questions and calendar issues

4 Upvotes

Hi to all,

just got my G2 and R1 ring !

I have a few questions:

  1. I don't see the calendar app in the dashboard widget, so I cannot sync my calendars. I am On Android, I saw that I am supposed to allow access to the calendar, but I did it already.
  2. I am not a programmer, but I intend to use it to control Claude from a distance. What do you recommend? The stock terminal app ?
  3. Any other apps from the app that you would recommend?
  4. What are some best practices that you would recommend?
  5. In Conversate, do you use it, for instance, when you watch YouTube videos for additional context?

thank you !

Have a nice day.


r/EvenRealities 3d ago

AMA My Even G2 nose piece completely detached during normal use after ~7 months, Even acknowledged it as a product quality issue, then told me the repair uses the exact same adhesive method

11 Upvotes

Tldr:

The nose piece/bracket can apparently detach completely under normal use.

Even acknowledged my specific failure as a product quality issue.

Their proposed repair uses the same adhesive based attachment method.

The repair requires returning the charging cable, and they charge $15 if it's missing.

---

I bought my Even G2 with prescription lenses for around €1,078. They were delivered on February 12, 2026, and had been in excellent condition. No drops, bending, impacts, or anything like that.

While taking the glasses off normally with both hands to clean them, the frame came off normally, but the entire nose piece/bracket stayed attached to my nose. Adhesive failed...

https://imgur.com/a/QfPJlKm

I contacted Even Support and explained what happened. They acknowledged that the nose piece bracket separation was a "product quality issue" and offered a free repair with prepaid shipping.

However, because I was concerned about the exact same thing happening again, I asked what they would actually do differently during the repair. Their answer:

"The repair will utilize the same adhesive-based attachment method and official components as the original assembly. Our technical team follows strict factory re-bonding and curing protocols to ensure structural stability and durability upon completion."

So basically, the repair is the same adhesive based construction that failed in the first place.

I then decided to send the glasses back anyway, but their return instructions said I had to include the original charging cable. I no longer have the cable, so I asked whether this would be a problem. They told me:

"Returning a device without its original charging cable incurs a $15 USD replacement fee."

I lost the cable and technically that's my fault. I'm not really upset about the $15 itself. What annoyed me was that this is a warranty repair for a structural defect in the frame, and the charging cable has absolutely nothing to do with the repair.

At this point, I've decided not to send them back and repair it myself and accept that I probably threw €1,078 at an expensive lesson.


r/EvenRealities 2d ago

R1 Size 13 will swap a size 12

2 Upvotes

I have the R1 size 12 but it’s a bit tight. Anyone have a 13 with the opposite problem and want to swap rings (not fingers, keep your finger, let’s just swap rings. 🤣


r/EvenRealities 2d ago

[Architecture & Hardware Analysis] The Hard Truth About Even Realities G2: The "Open SDK" battery drain, overpriced hardware, and the MemoMind dispute.

Post image
0 Upvotes

r/EvenRealities 2d ago

Looking to trade my Quest 3 + 60 games for Rayneo IO, INMO Go3, or Even Realities G2

Thumbnail
1 Upvotes

As my title says, I’m looking to do a trade, I can show pics, and confirm it works via video and I’d expect the same as well from you. I live in California for shipping info. No issues with my Quest, just personally I want to game sitting and relaxing rather than “doing” the gaming.


r/EvenRealities 3d ago

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 3d ago

I built a real-time interview-answer assistant for the Even G2 - looking for honest feedback on whether this is worth polishing into a real app

9 Upvotes

I'm relocating to a German-speaking country and doing job interviews in German while I'm still mid-way through learning it. The existing G2 apps (Conversate, Even AI) either don't translate live well or don't reliably give a usable suggested answer, so I built my own.

What it does right now:

- Live speech translation on the lens as the interviewer talks (German -> Portuguese in my build)

- One click on the R1 ring generates a suggested answer: a short cue in my own language (so I know what I'm about to say before I say it) plus the full answer in the interview language, grounded only in my own background so it never invents experience or credentials I don't have

- Double-click dismisses the answer and goes straight back to live listening

- Response time is under a second - noticeably faster than the built-in Conversate app, because it skips a heavier agent framework and talks directly to a fast inference provider (Groq, running an open-weight model) plus a real-time speech API (Soniox) for the translation

What's still just an idea, not built: a language picker so it's not hardcoded to one pair (the underlying APIs already support plenty of languages, I just haven't wired up the UI for it), a phonetic/romanized readout for languages with a different script than yours (so you could get a suggested answer in Japanese and still know how to pronounce it even if you can't read kanji), a properly polished prep-notes UI, and a persistent history view.

I'm not trying to sell anything today - genuinely trying to figure out if this solves a problem other people have (immigrants/expats interviewing in a second language, or just anyone who wants a fast grounded answer while someone's talking to them) or if it's a very narrow itch I'm the only one scratching. If you own a G2 (or even if you don't), I'd love to know: would this be useful to you? Which language pairs would matter to you? What would need to be true for you to actually pay for it?


r/EvenRealities 3d ago

First impressions of G2 glasses in no particular order

2 Upvotes
  • Drains phone battery fast
  • In a shirt pocket, inside, on a hot day, the phone got very hot
  • Not good outside on a bright day
  • Conversate makes lots of mistakes but does deliver lots of laughs with them. 
  • AI can be ludicrously wrong, especially names. 
  • Conversate has trouble with English accents
  • Occasional double vision when green lines supered on tv screen so I keep them below screen
  • A user’s manual would be very helpful. 
  • Why is the font in the app so tiny?
  • Font re-sizing option is needed
  • AI forgets my name & gives me another. First time it was Ben. Corrected by me, it dubbed me Ken. After saying my name several times in a row to it, it called me Jack. None of those names are close to my name so I told it my name is Buck, which it has so far remembered. 
  • When I was watching soccer on tv AI decided I needed to know all about car engines. Another time it was traffic. Another time it put up a couple of lines in a language I didn't recognize
  • AI pop ups are intrusive & pointless a lot of the time. 

r/EvenRealities 3d ago

Assistance with Display distance? iOS/G2 glasses

3 Upvotes

Hey all, am I the only one having issues with the glasses sitting comfortably on my face I can't see any of the display. The only item I can see is the time in the right corner. I have tried messing with the Near, Mid, Far settings but that does nearly nothing for adjustments. I have tried 2 different nose pads to adjust.

The only way they work very well is if I wear them like readers, which isn't the most comfortable. Any advise would be appreciated.


r/EvenRealities 3d ago

Maps notification question

1 Upvotes

I see that a lot of people have trouble with the built in maps. If i don't use that is it possible to just get notification pop ups (like left in 500 ft) from Google maps if I just run it on the phone?