Writerdeck: The Trap of Distraction-Free Writing Setups
A Hacker News story about a customized Linux laptop for writing sparks debate on whether intricate setups actually help or just feed procrastination.
The writerdeck—a custom-built Linux laptop for distraction-free writing—caught fire on Hacker News this week, racking up 235 points and 123 comments. The concept promises focus, but the community dug deeper, questioning whether the setup is a solution or a symptom of something else.
The Writerdeck Story and Hacker News Reaction
In the original post, Veronica details how she built a dedicated writing machine from scratch: a used ThinkPad running a manually configured Void Linux install, with a streamlined window manager (dwm), a custom network stack (dhcpcd + iwd), and her preferred text editor (Neovim with minimal plugins). The goal was a device that only writes—no browser, no notifications, no distractions. She even replaces the default battery readout and login sequence to further trim the experience. Then, to handle occasional multitasking, she installs tmux.
Why the Setup Sparks Controversy
The comments reveal a deep ambivalence about the project.
One user captured the irony:
“There's a bit of irony to solving your 'paying attention to writing' problem by setting up your OS from scratch, choosing to swap out the default networking stack, installing a novel flavor of your preferred text editor because you're trying to get to know it a bit more, customizing your battery readouts, tweaking the login sequence, and then, after all that effort … installing tmux so that you'll be able to do multiple things at a time.”
Another commenter speculated about the psychology:
“This reads like someone with ADHD took Adderall and accidentally focused hard for a day on the wrong thing. … if every 2 projects the writerdeck gets revamped then it seems like a way to get a dopamine hit or distract oneself.”
Some offered a simpler alternative: just drop to a text console with Ctrl+Alt+F3. A philosophical take noted that many are “coping with the current hellscape” by turning inward, hoping a perfect personal setup will fix things—something only collective action can address.
A Simpler Alternative: Just Use TTY
I've been down this road. The appeal of a writerdeck is real: a dedicated tool that separates writing from the rest of digital life. But if the setup takes more time than the writing, it's not a productivity hack—it's a procrastination loop disguised as optimization.
The writerdeck saga echoes a common pattern among developers: we build elaborate environments to avoid doing the actual work. The best tool for writing is the one you already have—a plain text file in any terminal. Adding layers like dwm, custom network stacks, and battery scripts doesn't make the writing better; it makes the system more fragile and harder to maintain.
That said, there is genuine value in reducing distraction. A TTY session (Ctrl+Alt+F3 on most Linux systems) achieves the same as a full writerdeck in seconds. No configuration needed. If you want session management, tmux or screen works well. But the real bottleneck is not the environment—it's the discipline to sit down and write.
For those tempted to build their own writerdeck, consider these concrete steps:
- Start minimal. Before building anything, try a TTY (or a full-screen terminal with Ctrl+Shift+F on many emulators). See if that removes enough friction.
- Use what you know. If you're a Vim user, stay in Vim. If you're a VS Code fan, try its focus mode. The tool matters less than the habit.
- Automate nothing until you have a routine. Build the habit first, then optimize.
A simple tmux-based writing session might look like this:
# Start a new tmux session named 'write'
tmux new -s write
# Inside, launch Neovim
nvim draft.md
That's it. No custom kernel, no battery readouts—just a terminal and a text editor.
If you really want a dedicated device, grab a cheap laptop, install a minimal distro like Alpine, and set up nothing beyond a text editor and tmux. The rest is gravy.
The Verdict: Focus on Writing, Not Setup
If you spend more time configuring than writing, you should care—it's a signal that your focus is misaligned. The writerdeck can be a powerful tool if built intentionally and used consistently, but it's more likely to become a hobby than a productivity multiplier. Most people can achieve the same result by pressing Ctrl+Alt+F3. Ignore the hype and write a sentence first.
Check out the original Hacker News discussion for more perspectives.