From d057fd141bbb0ecddea9368968b2307409a4903b Mon Sep 17 00:00:00 2001 From: Kenichi Kamiya Date: Wed, 2 Jul 2025 00:26:55 +0900 Subject: [PATCH] bug: fix invalid values in desktop file (#1749) The current desktop file caused an error and a hint from `desktop-file-validate` 0.28. This commit addresses those issues: - The "Version" field must be empty or a desktop entry specification version (e.g., 1.0, 1.5), not the tool's version. - The "Categories" field should only contain one main category to avoid warnings. ref: https://specifications.freedesktop.org/desktop-entry-spec/1.5/recognized-keys.html --- desktop/bottom.desktop | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/desktop/bottom.desktop b/desktop/bottom.desktop index b9ff4674..dbc3b9f7 100644 --- a/desktop/bottom.desktop +++ b/desktop/bottom.desktop @@ -1,10 +1,10 @@ [Desktop Entry] Name=bottom -Version=0.10.2 +Version=1.5 GenericName=System Monitor Comment=A customizable cross-platform graphical process/system monitor for the terminal. Exec=btm Terminal=true Type=Application -Categories=Utility;System;ConsoleOnly;Monitor; +Categories=System;ConsoleOnly;Monitor; StartupNotify=false