From b7cb8af9a9c35e95fe87af8ae0a5f774b1f25b55 Mon Sep 17 00:00:00 2001 From: Johannes Zellner Date: Fri, 29 Feb 2008 19:36:46 +0000 Subject: [PATCH] - added a simple .desktop file (I don't have a icon for the application :( ) (Old svn revision: 4008) --- INSTALL | 5 ++++- Makefile.am | 11 +++++++++-- xfce4-taskmanager.desktop.in | 11 +++++++++++ 3 files changed, 24 insertions(+), 3 deletions(-) create mode 100644 xfce4-taskmanager.desktop.in diff --git a/INSTALL b/INSTALL index 5458714..d3c5b40 100644 --- a/INSTALL +++ b/INSTALL @@ -2,7 +2,7 @@ Installation Instructions ************************* Copyright (C) 1994, 1995, 1996, 1999, 2000, 2001, 2002, 2004, 2005, -2006 Free Software Foundation, Inc. +2006, 2007 Free Software Foundation, Inc. This file is free documentation; the Free Software Foundation gives unlimited permission to copy, distribute and modify it. @@ -67,6 +67,9 @@ The simplest way to compile this package is: all sorts of other programs in order to regenerate files that came with the distribution. + 6. Often, you can also type `make uninstall' to remove the installed + files again. + Compilers and Options ===================== diff --git a/Makefile.am b/Makefile.am index b9b3ef8..5df7ac5 100644 --- a/Makefile.am +++ b/Makefile.am @@ -4,6 +4,11 @@ SUBDIRS = \ po \ src +desktopdir = $(datadir)/applications +desktop_in_files = xfce4-taskmanager.desktop.in +desktop_DATA = $(desktop_in_files:.desktop.in=.desktop) +@INTLTOOL_DESKTOP_RULE@ + distclean-local: rm -rf *.cache *~ @@ -14,11 +19,13 @@ rpm: dist EXTRA_DIST = \ intltool-extract.in \ intltool-merge.in \ - intltool-update.in + intltool-update.in \ + $(desktop_in_files) DISTCLEANFILES = \ intltool-extract \ intltool-merge \ - intltool-update + intltool-update \ + $(desktop_in_files) # vi:set ts=8 sw=8 noet ai nocindent syntax=automake: diff --git a/xfce4-taskmanager.desktop.in b/xfce4-taskmanager.desktop.in new file mode 100644 index 0000000..55f7fa0 --- /dev/null +++ b/xfce4-taskmanager.desktop.in @@ -0,0 +1,11 @@ +[Desktop Entry] +Encoding=UTF-8 +_Name=Xfce4 Taskmanager +_Comment=Control your processes +_GenericName=Process manager +Exec=xfce4-taskmanager +Icon=utilities-system-monitor +Terminal=false +StartupNotify=true +Type=Application +Categories=Application;System;Utility; \ No newline at end of file