diff options
author | Gerd Hoffmann <kraxel@redhat.com> | 2019-05-23 12:25:11 +0200 |
---|---|---|
committer | Gerd Hoffmann <kraxel@redhat.com> | 2019-05-23 12:25:11 +0200 |
commit | 13369625e79b419172d72c86a21865c35c7133e0 (patch) | |
tree | fd9fd6c4fbf9c75c51c832c5abe6f3dedb1f5fa4 | |
parent | 3d4a773b2b6c7c997a07fc5f9574ce29ae04cfe6 (diff) | |
download | gterm-13369625e79b419172d72c86a21865c35c7133e0.tar.gz |
add desktop file
-rw-r--r-- | gterm.desktop | 10 | ||||
-rw-r--r-- | gterm.spec | 1 | ||||
-rw-r--r-- | meson.build | 2 |
3 files changed, 13 insertions, 0 deletions
diff --git a/gterm.desktop b/gterm.desktop new file mode 100644 index 0000000..c557372 --- /dev/null +++ b/gterm.desktop @@ -0,0 +1,10 @@ +[Desktop Entry] +Name=gterm +GenericName=Terminal +Comment=terminal application +Exec=gterm +Terminal=false +Type=Application +Encoding=UTF-8 +Icon=xterm-color +Categories=System;TerminalEmulator; @@ -30,3 +30,4 @@ ninja-build -C build-rpm install %doc README COPYING %{_bindir}/gterm %{_mandir}/man1/gterm.1* +%{_prefix}/share/applications/gterm.desktop diff --git a/meson.build b/meson.build index 8c3efbc..42522b2 100644 --- a/meson.build +++ b/meson.build @@ -13,3 +13,5 @@ executable('gterm', dependencies : [ gtk_dep, vte_dep ], install : true) install_man('gterm.1') +install_data('gterm.desktop', + install_dir : 'share/applications') |