blog/_posts/Linux/ubuntu/desktop-locate.md
2024-04-15 10:41:25 +08:00

40 lines
1.3 KiB
Markdown
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

---
title: 💁Ubuntu程序Desktop文件位置
date: 2024-04-06 16:00:00
tags:
- Ubuntu
---
Ubuntu的desktop文件相当于windows的桌面软件快捷方式可以在任何地方快速打开软件。记录一下Ubuntu系统中desktop文件的位置。
方便以后处理删除程序或新增程序时候,桌面图标不正确的问题。
**1 用户的desktop 文件位置**
```sh
~/.local/share/applications
```
**2 公共的 desktop 文件位置,如有重复,用户自己desktop文件优先**
```sh
/usr/share/applications
```
<!--more-->
> `.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)