From owner-freebsd-questions@FreeBSD.ORG Wed Nov 20 22:35:40 2013 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id E9B68162 for ; Wed, 20 Nov 2013 22:35:40 +0000 (UTC) Received: from mail-oa0-x234.google.com (mail-oa0-x234.google.com [IPv6:2607:f8b0:4003:c02::234]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id BB8862E6D for ; Wed, 20 Nov 2013 22:35:40 +0000 (UTC) Received: by mail-oa0-f52.google.com with SMTP id h16so5254983oag.25 for ; Wed, 20 Nov 2013 14:35:40 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:date:message-id:subject:from:to:content-type; bh=nanIQPvkIuwAi8AIJua2PyKfavtAWuFECq5eWU6CpSs=; b=JSt1ygLQgHR52eT6J/18CRWv7Fbh6XcjuwnHCBKrMuCdm3K/+pVKddMMtGiU3fmbbZ BfdY9nfA/h2V/kCCmBEJXyI+1/QeNedEGyx8yZLMw/0j7eq0P5MFlwaDP2DCJkUeIgdZ OQUaIlOkm0PSG8UZ4S05D7IoA7K6lR++m0+x6vmXIWD/ulFdoac2EAk8E092M7KYfhUI 5QXXfF2FmzmcMuWMBEhx2YYRE2NoWDYpbOqcrjGx0X61EZ2zdcgzd+OuDYMbcwuRdyST bpLlZ2UCuzoV/i94PofUnQwt1DoRBj8GqLevnSEIIjRxPVO1u50CDCPdQ7hUqX6LtVfW AbPQ== MIME-Version: 1.0 X-Received: by 10.182.247.68 with SMTP id yc4mr2400462obc.67.1384986940082; Wed, 20 Nov 2013 14:35:40 -0800 (PST) Received: by 10.76.168.137 with HTTP; Wed, 20 Nov 2013 14:35:39 -0800 (PST) Date: Wed, 20 Nov 2013 16:35:39 -0600 Message-ID: Subject: launch a program at startup From: Antonio Olivares To: FreeBSD Questions Content-Type: text/plain; charset=ISO-8859-1 X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.16 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 20 Nov 2013 22:35:41 -0000 Dear folks, I have resurrected an old AMD-K6 Machine and have installed FreeBSD 9.2 on it and have installed icewm as the desktop. Simple desktop. I have installed an application tilem2 which is a calculator emulator found in /usr/ports/emulators/tilem/ On other machines I have a desktop entry in ~/.config/autostart/ $ cat ~/.config/autostart/tilem2.desktop [Desktop Entry] Type=Application Exec=/usr/local/bin/tilem2 Hidden=false X-GNOME-Autostart-enabled=true Name[en_US]=tilem2 Name=tilem2 Comment[en_US]=tilem2 Comment=tilem2 $ I created a file called startup which includes #!/bin/sh /usr/local/bin/tilem2 & and it is executable, I also copied this file to ~/.icewm/startup but tilem2 does not launch at startup. Any ideas/tips to fix this are greatly appreciated. Best Regards, Antonio