-
-
Notifications
You must be signed in to change notification settings - Fork 13
Floating Windows
Floating windows overlay on top of any app, displaying clocks, weather, notifications, and music controls while a full-screen HA dashboard is visible.
This is what makes Ava visually unique. Floating windows overlay on top of any app - display a full-screen HA dashboard while still seeing clock, weather, and notifications overlaid on top.
Other apps force you to choose: dashboard or clock. With Ava, you get both.
Features:
- Always visible - overlays on any app, including full-screen browsers
- HA control - remotely toggle each window from Home Assistant
- Non-intrusive - designed to complement, not block the main interface
- Global overlay back control (0.5.4+) - auto-hiding oval back button on all fullscreen overlays
In Weather, Dream Clock, Minimal Clock, and Quick Entities, a light tap on the screen reveals a floating oval back button at the top edge. It auto-hides after a few seconds of inactivity. One tap returns you to the main dashboard or exits the current overlay.
This is especially critical for Facebook Portal, tablets, and wall-mounted panels running 24/7, where browser overlays and fullscreen layers previously trapped the user with no obvious escape path.
| Window | Description | Settings Location |
|---|---|---|
| Dream Clock | Elegant analog clock | Interaction -> Scenes |
| Simple Clock | Minimal digital clock | Interaction -> Scenes |
| Vinyl Cover | Rotating record cover when playing music | Interaction -> Playback |
| Floating Subtitle | Shows what you said and AI responses | Interaction -> Interface |
| Weather Overlay | Immersive weather UI | Interaction -> Scenes |
| Light Switch Overlay | Beautiful reminder when controlling lights by voice | Interaction -> Interface |
| Quick Entity Panel | Stream Deck style entity control panel | Interaction -> Interface |
An elegant analog clock floating window.
- Go to Settings -> Interaction -> Scenes
- Turn on Dream Clock
# Show
service: switch.turn_on
target:
entity_id: switch.your_device_name_dream_clock_display
# Hide
service: switch.turn_off
target:
entity_id: switch.your_device_name_dream_clock_displayA minimal digital clock floating window.
- Go to Settings -> Interaction -> Scenes
- Turn on Simple Clock
Enable Double Tap Toggle to double tap the bottom area to hide or show the clock, mapped to the HA entity.
# Show
service: switch.turn_on
target:
entity_id: switch.your_device_name_simple_clock_display
# Hide
service: switch.turn_off
target:
entity_id: switch.your_device_name_simple_clock_displayRotating record cover displayed when playing music.
- Go to Settings -> Interaction -> Playback
- Turn on Home Assistant Media Controls or Music Assistant Media Controls
- Set the HA Media Player entity ID for album art
See Music Playback for details.
Shows what you said and Ava's AI response on screen as a floating subtitle.
- Go to Settings -> Interaction -> Interface
- Turn on Floating Subtitle
An immersive weather UI showing real-time weather information.
- Go to Settings -> Interaction -> Scenes
- Turn on Weather Display
- Set the Weather Entity (e.g.,
weather.home)
- Temperature
- Weather condition (sunny, cloudy, rain, etc.)
- Humidity
- Wind direction and speed
- Air quality
- Pressure
# Show
service: switch.turn_on
target:
entity_id: switch.your_device_name_weather_display
# Hide
service: switch.turn_off
target:
entity_id: switch.your_device_name_weather_displayShows a beautiful reminder when you control lights by voice.
- Go to Settings -> Interaction -> Interface
- Turn on Light Switch Button Overlay
Customize glow and ripple colors for each wake word:
- Custom color picker
- Default green (Wake Word 1) / blue (Wake Word 2)
- 7 rainbow presets (red through purple)
A Stream Deck style entity quick control panel. See Quick Entity for details.
| Setting | Location | Description |
|---|---|---|
| Dream Clock | Interaction -> Scenes | Show analog clock |
| Simple Clock | Interaction -> Scenes | Show digital clock |
| Weather Display | Interaction -> Scenes | Show weather overlay |
| Vinyl Cover | Interaction -> Playback | Show music cover |
| Floating Subtitle | Interaction -> Interface | Show conversation text |
| Light Switch Overlay | Interaction -> Interface | Show light control reminder |
| Quick Entity Panel | Interaction -> Interface | Show entity control panel |
- Check overlay permission
- Enable the specific floating window in settings
- Try restarting service
- Check if another overlay is blocking
- Set the Weather Entity in settings (e.g.,
weather.home) - Check if the entity exists in Home Assistant
- Check network connection
Only one clock should be enabled at a time. Disable one if both are showing.
Back to Home