✦ PulseDeck ✦
A cyber-synthwave internet radio player for your terminal.
Stream any radio station on Earth. Record tracks automatically. Never leave the command line.

What is PulseDeck?
PulseDeck is a terminal internet radio player with a retrowave soul, built in Rust. It works like any radio — tune in, listen, discover — but it lives entirely in your terminal, starts instantly, and uses a few megabytes of RAM.
It ships pre-loaded with handpicked synthwave, chiptune, and cyberpunk stations so it sounds great from the first keypress. But you can search, save, and play any public internet radio station in the world.
Think of it as: VLC for internet radio, but it fits in your terminal and records tracks into named folders automatically.
PulseDeck was formerly named DriftFM. The project was renamed to avoid confusion with existing and historical radio-related uses of the old name. Existing DriftFM config is copied into the new PulseDeck config directory on first launch.
What makes it different?
Most TUI radio players just wrap ffplay. PulseDeck is purpose-built from scratch in Rust with features you'd otherwise only find in native desktop apps:
- 📡 Search 30,000+ stations from the global radio-browser.info catalog — by name, tag, or country, with mirror failover for upstream outages
- 📼 Automatic track recording — press
rand it captures tracks as separate files, namedArtist - Title.mp3, tagged with ID3 metadata, sorted into genre subfolders - 🧹 Smart ad filtering — DJ speech, news breaks, and commercial spots are detected and silently discarded. Only real music is kept.
- 🔊 Smooth tuning transitions — switching stations fades out the current stream and fades in the new one, like turning an analog dial
- 🎨 5 built-in themes — Retrowave (default), plus all 4 Catppuccin flavors (Mocha, Macchiato, Frappé, Latte), verified pixel-perfect against the official spec. Every UI element — spectrum gradients, recording indicators, search bar, favorite stars — routes through the 13-role semantic palette. Switch live in settings.
- 🎛️ Three-Way Bento Dashboard Layout — press
bto cycle between standard split panels, closed Bento (maximizing station list), and full-screen ambient cassette deck. - 💾 Favorites & history — your stations are remembered between sessions, and the last-played station can auto-resume on launch
- 🔔 Desktop notifications — a silent system notification shows the current track when a new song starts
- 🎛️ Resilient streaming — a circular buffer absorbs network hiccups so your audio doesn't cut out when the connection stutters
Installation
Prerequisites: Rust & Cargo (1.75+)
On Linux, also install ALSA dev headers first:
From crates.io (recommended)
From source
That's it. No config files to write. No API keys. Stations are pre-loaded and the player starts immediately.
How to use it
PulseDeck is keyboard-driven. Press h at any time to see the full control reference.
Core shortcuts
| Key | Where | What it does |
|---|---|---|
↑ / ↓ or j / k |
Library or search | Move through the visible list |
Enter |
Library | Play the highlighted saved station |
Enter |
Search | Save the highlighted result to your Library, then play it |
/ |
Anywhere in normal mode | Open worldwide station search |
Esc |
Search or overlay | Leave search / close overlay |
f |
Library only | Remove the highlighted station from your Library |
u |
Library only | Undo the most recent station removal |
Tab / Shift+Tab |
Library | Switch genre categories |
Space |
Playback | Pause / resume |
s |
Playback | Stop playback |
+ / - |
Playback | Volume up / down |
m |
Playback | Mute / unmute |
r |
Playback | Start / stop recording; PulseDeck shows a footer notice when recording is armed, stopped, or unavailable |
b |
View | Cycle layout |
p |
View | Cycle deck page |
v |
View | Cycle visualizer |
, |
App | Open settings |
h / ? |
App | Show / hide help |
q |
App | Quit |
There is intentionally no separate “add without playing” shortcut in search mode. Enter is the one search commit action: it adds the highlighted search result to your saved Library and starts playback.
Workflow
Finding and adding a new station:
- Press
/to open search, then type a genre, city, country, or station name. Search starts after 2+ characters and waits briefly while you type, so quick typing does not send a request for every letter. - Use
↑/↓to highlight a result. - Press
Enterto save that result to your Library and start playing it immediately. It will be available next time you launch PulseDeck. - Press
Escinstead to leave search without adding anything.
The search bar shows clear states while you work: Type 2+ chars to search, searching ..., result counts, No results, ★ Saved to library, or a compact Search failed: ... error. Older search responses are ignored if you have already typed a newer query.
Managing your library:
- Your Library is the saved station list shown on launch.
- To remove a saved station, highlight it in the Library and press
f. - After removal, press
uto restore the most recently removed station. - Switch between genre categories with
Tab/Shift+Tab.
Coming back tomorrow:
- PulseDeck remembers your library between sessions.
- PulseDeck also remembers your volume, mute state, layout mode, and visualizer mode in a separate
ui-state.jsonfile. - Enable Auto-resume last station in settings (
,) and it starts playing where you left off automatically.
Recording
Press r while a station is playing. PulseDeck will:
- Show
Recording will start at next track boundaryin the footer - Wait for the next song boundary (so you never capture a partial intro)
- Record each track to its own file in the native stream format —
recordings/Synthwave/Perturbator - Venger.mp3or.aacdepending on what the station broadcasts. No transcoding, no quality loss. - Embed the correct ID3 tags (artist, title, station name as album)
- Discard anything under 90 seconds — DJ speech, ads, station IDs are swept automatically
- Stop cleanly when you press
ragain, withRecording stoppedshown in the footer
If you press r before playback starts, PulseDeck shows Start playback before recording instead of failing silently.
The minimum song duration and whether to keep short clips are configurable in the settings (,).
Settings
Press , to open the settings panel. Current options:
- Desktop notifications — show track info when a song changes. On WSL, PulseDeck falls back to a Windows notification balloon if the normal Linux notification path is unavailable.
- Auto-resume last station on startup — picks up where you left off
- Tape capture folder — cycle between preset recording directories
- Keep partial snippets & ads — whether short clips and non-music segments are kept or silently deleted
- Min song duration — threshold for auto-discarding short recordings (30s–180s). Only active when Keep partial snippets & ads is OFF.
- Theme — cycle between Retrowave, Catppuccin Mocha, Macchiato, Frappé, and Latte
Settings are saved automatically to a JSON file in your config directory.
Migration from DriftFM
PulseDeck automatically copies existing DriftFM config files into the new config directory on first launch:
| Old path | New path |
|---|---|
~/.config/driftfm/library.json |
~/.config/pulsedeck/library.json |
~/.config/driftfm/ui-state.json |
~/.config/pulsedeck/ui-state.json |
The old ~/.config/driftfm directory is left untouched as a backup. Future saves go to ~/.config/pulsedeck.
Platform Support
| Platform | Status |
|---|---|
| Windows | ✅ Full support (native WASAPI audio) |
| Linux | ✅ Full support (ALSA) |
| macOS | ✅ Full support (CoreAudio) |
| WSL | ✅ Supported with Windows notification fallback |
Code Quality
PulseDeck's CI checks:
- Rust formatting with
cargo fmt --check - Clippy across all targets and features with warnings treated as errors
- Tests across all targets and features
- Release build verification
- RustSec dependency audit with
cargo audit
The codebase also keeps UI colors routed through the semantic palette in theme.rs, isolates blocking audio work from the TUI event loop, and keeps app/audio architecture notes in docs/.
Built with
All native Rust — no ffmpeg, no Python, no Electron. A single self-contained binary.
- Ratatui — Terminal UI framework
- Rodio + Symphonia — Audio decoding & playback (native, no ffmpeg dependency)
- Tokio — Async runtime for API search
- reqwest — HTTP streaming with ICY metadata support
- id3 — ID3 tag injection into recorded files
License
MIT — see LICENSE for details.