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

推荐订阅源

U
Unit 42
罗磊的独立博客
博客园 - 聂微东
T
The Blog of Author Tim Ferriss
博客园 - 司徒正美
Stack Overflow Blog
Stack Overflow Blog
F
Fortinet All Blogs
A
About on SuperTechFans
腾讯CDC
Apple Machine Learning Research
Apple Machine Learning Research
B
Blog RSS Feed
IT之家
IT之家
V
Visual Studio Blog
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
宝玉的分享
宝玉的分享
C
Check Point Blog
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
Vercel News
Vercel News
爱范儿
爱范儿
Microsoft Security Blog
Microsoft Security Blog
月光博客
月光博客
T
Tailwind CSS Blog
The Cloudflare Blog
Hugging Face - Blog
Hugging Face - Blog

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
How to Set a Custom Startup Movie on Steam Deck
Daniel Wohlg · 2026-04-27 · via DEV Community

Daniel Wohlgemuth

Recently, I wanted to know how I could turn of the startup sound on the Steam Deck. After a bit of searching I found that there is not an option for that, but since it's just a video, it can be replaced with a silent one.
There are 3 ways to replace the boot animation:

In this walkthrough I want to explain how you can set your own movie as the startup movie.

Here are the steps:

  1. Open the Steam menu by pressing the Steam button or the B button.
  2. Select the Power option.
  3. Select Switch to Desktop.
  4. Open the file explorer. I'm assuming it's Dolphin.
  5. Select Home in the top left corner to go to your home folder.
  6. Open the hamburger menu in the top right and make sure the Show Hidden Files option is checked.
  7. Open the .steam folder. Next, open the root folder and then the config folder.
  8. If you see an uioverrides folder, open it. Otherwise, create it first.
  9. Inside the uioverrides folder should be a movies folder. If it's missing, create and then open it. You should now be in /home/deck/.steam/root/config/uioverrides/movies/.
  10. Place the movie in this folder. It should be in the webm file format and be less than 30 second long.
  11. Open the hamburger menu in the top right, uncheck Show Hidden Files, and close the file explorer.
  12. Double-click on Return to Gaming Mode or restart the Steam Deck.
  13. Open the Steam menu.
  14. Select Settings.
  15. Select Customization.
  16. Select your movie.

Now you should have your own movie show up when your Steam Deck starts.

Two more things.

  • You can skip the startup movie by pressing any button on the front or top of the Steam Deck.
  • You can create a movie out of a single image using ffmpeg -loop 1 -t 5 -i startup.jpg startup.webm. Here, -loop 1 means the same image will be used for every frame, -t 5 means the movie will be 5 seconds long, -i startup.jpg is the input image, and startup.webm is the output movie.