From 3aee1bd4833d6853c15e808d11033bbb4b9a4606 Mon Sep 17 00:00:00 2001 From: zyimm Date: Thu, 16 May 2024 14:07:16 +0800 Subject: [PATCH] =?UTF-8?q?=F0=9F=AB=B6Ubuntu24.04=E7=AC=94=E8=AE=B0?= =?UTF-8?q?=E6=9C=AC=E5=90=88=E7=9B=96=E4=B9=8B=E5=90=8E=E6=97=A0=E6=B3=95?= =?UTF-8?q?=E5=94=A4=E8=B5=B7?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ...Laptop-lid-cannot-be-raised-when-closed.md | 0 _posts/Linux/ubuntu/desktop-locate.md | 47 +++++++++---------- 2 files changed, 21 insertions(+), 26 deletions(-) create mode 100644 _posts/Linux/ubuntu/Laptop-lid-cannot-be-raised-when-closed.md diff --git a/_posts/Linux/ubuntu/Laptop-lid-cannot-be-raised-when-closed.md b/_posts/Linux/ubuntu/Laptop-lid-cannot-be-raised-when-closed.md new file mode 100644 index 0000000..e69de29 diff --git a/_posts/Linux/ubuntu/desktop-locate.md b/_posts/Linux/ubuntu/desktop-locate.md index 1a65ee7..784a046 100755 --- a/_posts/Linux/ubuntu/desktop-locate.md +++ b/_posts/Linux/ubuntu/desktop-locate.md @@ -1,39 +1,34 @@ --- -title: 💁Ubuntu程序Desktop文件位置 -date: 2024-04-06 16:00:00 +title: 🫶Ubuntu24.04笔记本合盖之后无法唤起 +date: 2024-05-16 tags: - Ubuntu --- -Ubuntu的desktop文件相当于windows的桌面软件快捷方式,可以在任何地方快速打开软件。记录一下Ubuntu系统中desktop文件的位置。 +Ubuntu24.04笔记本合盖之后,无法唤起的问题解决方法如下: -方便以后处理删除程序或新增程序时候,桌面图标不正确的问题。 - -**1 用户的desktop 文件位置** +使用root权限修改`/etc/systemd/logind.conf` 下面几个选项配置,如果前面有`#`的话,请先去除注释符号。 ```sh -~/.local/share/applications +HandleLidSwitch=suspend # 当笔记本电脑使用电池供电时,合盖挂起 +HandleLidSwitchExternalPower=suspend #当笔记本电脑插入电源插座时,合盖挂起 +HandleLidSwitchDocked=ignore #当笔记本电脑连接到扩展坞时,合盖忽略 + +# 修改如下: +HandleLidSwitch=ignore +HandleLidSwitchExternalPower=ignore +HandleLidSwitchDocked=ignore + ``` -**2 公共的 desktop 文件位置,如有重复,用户自己desktop文件优先** +**保存之后重启登陆即可!** -```sh -/usr/share/applications -``` +> 参数的可选值解释如下: - +1. suspend:合盖时挂起 +2. lock:合盖时锁定 +3. ignore:什么都不做 +4. poweroff:关机 +5. hibernate:合盖时休眠 -> `.desktop`桌面文件的一些常见配置项: - -1. Name:应用程序的可读名称。 -2. Exec:要执行的命令。这通常是启动应用程序的命令。 -3. Icon:应用程序的图标文件路径。 -4. Type:指定项目的类型,可以是Application、Link等。 -5. Categories:指定应用程序所属的类别,比如Utility、Development、Network等。 -6. Terminal:指定是否在终端中运行应用程序。 -7. StartupNotify:指定是否在应用程序启动时发送通知。 -8. MimeType:指定应用程序支持的MIME类型。 - -**示例参考:** - -[启动图标创建示例-https://www.zyimm.com/2022/11/05/Linux/ubuntu/charles-install](https://www.zyimm.com/2022/11/05/Linux/ubuntu/charles-install) +设置成ignore避免笔记盒盖导致挂起或休眠,之后的无法唤起故障!