laut.fm Current Song
Displays the currently playing track from a laut.fm station.
About this flow
| System | AWTRIX NG Scripts |
|---|---|
| AWTRIX version | AWTRIX NG |
| Topic | Miscellaneous |
| Built by | eXiratA |
| File | uZ3QqkugUG9u.ax · 0.9 KB |
| Icons | — |
| Published | 19 Aug 2026 · updated 19 Aug 2026 |
| Downloads | 47 |
Is this your flow?
If you created this flow, open your saved edit link to add it to your account. You can then manage it whenever you sign in. Adding it to your account replaces the edit link.
Flow description
This script displays the currently playing track from a laut.fm station as a scrolling text.
You need the "laut.fm Data Collector" to run this Script.
The script requires the "3841" icon for correct display.
uZ3QqkugUG9u.ax
# @name LautFM Current Song
# @desc Interpret und Titel als Laufschrift
# @config speed number "Scrollgeschwindigkeit" default=100 min=25 max=300 unit=%
# @config repeat number "Anzahl Durchläufe" default=1 min=1 max=10
# @config color color "Textfarbe" default=#FFFFFF
class LautFmCurrentSong
var speed
var repeat
var color
var song
def init()
self.speed = store.get("speed")
self.repeat = store.get("repeat")
self.color = store.get("color")
self.song = "Lade..."
end
def loop()
var value = shared.get("lautfm-data.song", nil)
if value != nil
self.song = value
end
end
def draw()
clear()
icon("3841", 0, 0)
scroll_text(
9,
6,
width() - 9,
self.song,
self.color,
{
"speed": self.speed,
"repeat": self.repeat,
"entry": "offscreen"
}
)
end
end
return LautFmCurrentSong()
Install it on your AWTRIX NG
Add this flow to your AWTRIX NG. It will start appearing on your display after installation.
Unable to connect? Download the flow and add it in the Scripts section of your AWTRIX. Advanced users can also use this command:
Discussion 0
Ask a question, suggest a change or share how you use it.
No comments yet. Start the conversation.
More flows for AWTRIX NG Scripts or Miscellaneous
Something wrong with this flow? Report it.
Have an idea?
Sign in to ask questions and join the conversation.