From owner-freebsd-xfce@FreeBSD.ORG Fri Aug 24 07:30:06 2012 Return-Path: Delivered-To: freebsd-xfce@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 025BB106564A for ; Fri, 24 Aug 2012 07:30:05 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id D6EDA8FC14 for ; Fri, 24 Aug 2012 07:30:05 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q7O7U5kW058548 for ; Fri, 24 Aug 2012 07:30:05 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q7O7U5dK058545; Fri, 24 Aug 2012 07:30:05 GMT (envelope-from gnats) Date: Fri, 24 Aug 2012 07:30:05 GMT Message-Id: <201208240730.q7O7U5dK058545@freefall.freebsd.org> To: freebsd-xfce@FreeBSD.org From: Olivier Duchateau Cc: Subject: Re: ports/170790: x11-wm/xfce4:please add DrPython shortcut in xfce4 menu after installation X-BeenThere: freebsd-xfce@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Olivier Duchateau List-Id: XFCE for FreeBSD -- porting and maintaining List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 24 Aug 2012 07:30:06 -0000 The following reply was made to PR ports/170790; it has been noted by GNATS. From: Olivier Duchateau To: bug-followup@FreeBSD.org, cederom@tlen.pl Cc: Subject: Re: ports/170790: x11-wm/xfce4:please add DrPython shortcut in xfce4 menu after installation Date: Fri, 24 Aug 2012 09:26:04 +0000 No, we can't :) DrPython doesn't provide .desktop file, so you must create yourself this file. There're several methods: 1) Create launcher on panel. Choose your favorite panel. Right click: Panel -> Add New Items... -> Launcher 2) Create item in 'general menu' 2.1) With your favorite text editor. Create .desktop file in ~/.local/share/applications (e.g. drpython.desktop) [Desktop Entry] Version=1.0 Type=Application Encoding=UTF-8 Exec=/usr/local/bin/drpython Icon=applications-other.png StartupNotify=false Categories=Development;TextEditor; OnlyShowIn=XFCE; Name=DrPython Comment=Customizable text Editor You can even add your locale in Name and Comment entries, but, your file must be encoding into UTF-8 (see converters/iconv). For Exec line, you can also remove absolute path. For Icon line, you must have to install x11-themes/icons-tango. 2.2) With GUI Launch exo-desktop-item-edit --create-new ~/.local/share/applications -- olivier