惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

博客园_首页
H
Help Net Security
腾讯CDC
宝玉的分享
宝玉的分享
H
Hackread – Cybersecurity News, Data Breaches, AI and More
L
LangChain Blog
爱范儿
爱范儿
T
The Blog of Author Tim Ferriss
J
Java Code Geeks
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
MyScale Blog
MyScale Blog
Engineering at Meta
Engineering at Meta
N
Netflix TechBlog - Medium
D
Docker
V
V2EX
Last Week in AI
Last Week in AI
G
Google Developers Blog
IT之家
IT之家
C
Check Point Blog
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
人人都是产品经理
人人都是产品经理
博客园 - 叶小钗
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
博客园 - 聂微东

Hacker News: Show HN

PurrrrrFocus: Pomodoro Timer App - App Store Workflow Engine — Multi-Step Orchestration for Bun RapidPhoto: Pro Photo Editor App - App Store GitHub - DheerG/swarms: Achieve extraordinary results with claude code across a variety of tasks SPICE simulation → oscilloscope → verification with Claude Code — Lucas Gerads Show HN: VCoding – A 5 MB native Windows IDE with no dynamic dependencies Show HN: LLMs don't hallucinate because they're bad at math, it's the format GitHub - Agent-FM/agentfm-core: AgentFM is a peer-to-peer network that turns everyday computers into a decentralized AI supercomputer. AgentFM lets you run massive AI workloads directly across a global mesh of idle CPUs and GPUs. Show HN: Tracking Top US Science Olympiad Alumni over Last 25 Years GitHub - Potarix/agent-hub: One place to talk to all your agents Show HN: Runtime security for AI agents(injection,tool abuse, data exfiltration) GitHub - dubeyKartikay/lazyspotify: Terminal Spotify client for macOS and Linux GitHub - the-banana-tool/king-louie: Easy to use GUI Personal AI Assistant. Win/Linux/Mac. Show HN I made my vacation rental bookable by AI agents–no Airbnb, 0% commission GitHub - basteez/jsf-autoreload: maven plugin to enable hot reload on jsf projects uvm32/hosts/host-gdbstub at main · ringtailsoftware/uvm32 GitHub - labsai/EDDI: Config-driven engine that turns JSON into production-grade AI agents. Multi-agent orchestration, 12+ LLM providers, MCP/A2A protocols, RAG, persistent memory, and enterprise compliance (EU AI Act, GDPR, HIPAA). Built on Quarkus. GitHub - glitchnsec/fortyone-oss: AI Executive Assistant Platform Quickstart | Alien GitHub - muxshed/shed: One stream in, or many. Every destination, simultaneously. No cloud middleman, no per-channel fees, no limits. GitHub - ocrbase-hq/ocrbase: 📄 PDF/IMG ->.MD/JSON Document OCR API for PaddleOCR and GLMOCR. Self-hostable. GitHub - impactjo/home-memory: MCP server that lets your AI assistant remember everything about your home. GitHub - Sets88/dbcls: DbCls is a powerful terminal database client that supports various databases GitHub - neptun2000/heor-agent-mcp GitHub - SeanFDZ/macmind: Single-layer transformer in HyperTalk for the classic Macintosh RollQuation: Math Puzzles - Apps on Google Play GitHub - dropbox/witchcraft Show HN: Agent-cache – Multi-tier LLM/tool/session caching for Valkey and Redis GitHub - opentalon/opentalon: OpenTalon is an open-source platform built from the ground up in Go as a robust alternative to OpenClaw LinkedIn™ 职位抓取工具 - Chrome 应用商店
GitHub - skorotkiewicz/rudo: A small, elegant dock for Wa...
modinfo · 2026-04-17 · via Hacker News: Show HN

Rodo

A small, elegant dock for Wayland.

rudo is built for a clean desktop: pinned apps, live running windows, gentle autohide, and simple user configuration. It is designed to feel at home on niri, while still working with other Wayland compositors that expose the right protocols.

Features
  • Wayland-first dock UI with GTK4 + layer-shell
  • Persistent pinned apps
  • Running window tracking
  • Launch feedback to prevent double-click spam
  • Badge notifications — unread counts from apps (Discord, Telegram, etc.)
  • Configurable menu system — power menu, custom actions, confirmations
  • Output-based grouping — group and order windows by monitor/screen
  • Optional autohide with hover-to-reveal
  • User theming via CSS
  • User behavior settings via JSON

Compositor Support

  • niri: best experience, using NIRI_SOCKET integration
  • Other Wayland compositors: works through wlr-foreign-toplevel-management when available
Feature Availability by Backend
Feature niri wlr-foreign-toplevel
Window tracking ✅ Full ✅ Full
Activation/close ✅ Full ✅ Full
Badge notifications ❌ Not yet ⚠️ Limited*

* Badge notifications depend on compositor-specific protocol extensions. Most compositors don't currently provide badge counts through the standard protocol.

Build

cargo build --release

Or with just:

just build

Run

cargo run --release

Or:

just run

Install

From AUR (Arch Linux)

For Arch Linux users, rudo is available in the AUR as rudo-bin:

yay -S rudo-bin
# or
paru -S rudo-bin

This installs the pre-built binary. No compilation needed.

Configuration

rudo stores its user files in ~/.config/rudo/.

  • pins.json: pinned applications
  • settings.json: behavior settings
  • style.css: visual overrides

Default settings.json:

{
  "autohide": {
    "enabled": true,
    "delay_secs": 3
  },
  "show_pin_button": true,
  "icon_size": 24,
  "position": "bottom",
  "animation_duration_ms": 220,
  "menu": {
    "enabled": true,
    "icon": "system-lock-screen-symbolic",
    "position": "end",
    "items": [
      {"label": "Lock", "icon": "system-lock-screen-symbolic", "command": "swaylock -f", "confirm": false},
      {"label": "Logout", "icon": "system-log-out-symbolic", "command": "loginctl terminate-user $USER", "confirm": true},
      {"label": "Restart", "icon": "system-restart-symbolic", "command": "systemctl reboot", "confirm": true},
      {"label": "Shutdown", "icon": "system-shutdown-symbolic", "command": "systemctl poweroff", "confirm": true}
    ]
  }
}
  • position: "bottom", "top", "left", "right" (requires restart)
  • icon_size: Size in pixels (default: 24)
  • animation_duration_ms: Show/hide animation in milliseconds (default: 220)
Menu System

Configure a power menu or custom actions via the menu section:

  • enabled: Show/hide the menu button
  • icon: Icon name for the menu button (default: system-lock-screen-symbolic)
  • position: "start" (before pins) or "end" (after running apps)
  • items: Array of menu items with label, command, optional icon, and confirm flag

Set confirm: true to show a confirmation dialog before executing destructive commands.

Badge Notifications

When supported by your compositor, rudo displays unread notification counts (badges) on dock items from apps like Discord, Telegram, etc. Badge counts are aggregated across all windows of the same app.

  • Zero-count badges are automatically hidden
  • Counts above 99 display as "99+"
  • Red badge with white text for visibility

style.css is loaded on every start after the built-in theme, so you can override the dock without rebuilding.

Autostart (niri)

Add to your niri config:

// ~/.config/niri/config.kdl
spawn-at-startup "rudo"

Development

just fmt
just check

Status

rudo is intentionally small. The codebase is structured to stay easy to change as more dock behavior is added over time.