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

推荐订阅源

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

Debian中文论坛 - 最新话题

为 WPS Linux 单独安装字体 软件吐槽 antix屏保怎样设置 救助:oa(致远A8)怎么安装控件? 强大的Thunderbird 各位的Debian桌面有啥“必装”软件吗? 有没有会自己录制视频的agent 折腾一个中午终于把onedrive挂载好了 LxQt开机后, 如何设置自动启动的软件? 让电脑下次开机进入其他系统或从U盘启动的方法 Linux上几款Markdown编辑器的比较 Pool到底是什么东西? Wine文华财经成功,经验分享 发现一个 /opt 和 /usr/local 的不同 复现 求助手机数据恢复软件 关于zram的,这样算正常么? JetBrains Toolbox界面花了 分享你的桌面,看看它是什么样子 最近 Debian 中文论坛是炸了吗 播放器界面字体很小,可以在哪里设置一下吗 Android版的Thunderbird 装了好多字体 桌面环境, 多个DNS, 全写在一起么? wine运行Office2007 老旧系统 VS 最新软件. OK? 升级Debian13.5以后蓝牙无法使用 红色警戒2 请教:xfce4 thunar 文件管理器 的 徽标图案在哪个目录? Large Text(大号文本)开启后Activities Overview Search View中的应用搜索结果会在特定情况下闪烁抖动
emacsclient 在 wayland 桌面环境的坑
Pirate · 2026-05-11 · via Debian中文论坛 - 最新话题

问题描述 在 x11 桌面中,可以由 systemctl 启动 emacs 服务器: systemctl --user enable emacs 然后即可启动 emacsclient: emacsclient -c -a “” 但转到 wayland 桌面后却出了问题,即 systemctl 启动 emacs 服务器时,由于 wayland 机制问题,窗口初始化不能正常完成,导致 emacsclient 启动时无法初始化窗口而不能显示窗口,仅能在终端中启动。 解决方案 不通过 systemctl 启动 emacs 服务器: systemctl --user disable emacs 在 ~/.config/autostart 中创建 emacs-daemon.desktop 文件: [Desktop Entry] Type=Application Exec=emacs --daemon Hidden=false NoDisplay=false X-GNOME-Autostart-enabled=true Name=Emacs Daemon Comment=...