🫶Ubuntu24.04笔记本合盖之后无法唤起

This commit is contained in:
zyimm 2024-05-16 14:07:16 +08:00
parent 69cb7ee111
commit 3aee1bd483
2 changed files with 21 additions and 26 deletions

View File

@ -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
```
> 参数的可选值解释如下:
<!--more-->
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避免笔记盒盖导致挂起或休眠之后的无法唤起故障