From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-vb0-f42.google.com (mail-vb0-f42.google.com [209.85.212.42]) by speech.braille.uwo.ca (Postfix) with ESMTP id D3FCFC1A22B for ; Mon, 22 Oct 2012 19:22:24 -0400 (EDT) Received: by mail-vb0-f42.google.com with SMTP id fs19so3846801vbb.29 for ; Mon, 22 Oct 2012 16:22:24 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=message-id:date:from:user-agent:mime-version:to:subject:references :in-reply-to:content-type; bh=W4qTpgeCcplKOHbnZ+3FHgFjzzPkJbCTncSQP35IJj4=; b=GZiEiyPU/hhHVP6gD9WAU9ZIayjCXo/bZ4dI2VgkyPkI0K1KEd0iy5Os3nIKVf8FZF sGKvDY3FIXTSiM2KZt8mhSfleJ/fTmLItIYni9UHRcVAJrNSqp0saku8eKdKeDWLh3+X 6L5QmpyE//2ZL86Vdr0IWWeCMDjedhJMAi8AsW4f+AHE4J8/SYnmB0kGowH5xY+yUEys dzJ+Vuh8A0VuNny2hpFfZ7w4ulkWrdUj/nd/cBCYgqzT8QpNSFOquv0OMlc5nMr3gN9V FK5NVuTQPEZrK+94OQWGyDdn6Qz7R19sEF4ESILKqXvKC/00Y5hZjgon+QWFil4RRtfe XqIw== Received: by 10.52.69.172 with SMTP id f12mr14164560vdu.92.1350948144488; Mon, 22 Oct 2012 16:22:24 -0700 (PDT) Received: from pc.kyle.tk (cpe-024-211-185-030.nc.res.rr.com. [24.211.185.30]) by mx.google.com with ESMTPS id dq8sm10964139vdc.4.2012.10.22.16.22.23 (version=SSLv3 cipher=OTHER); Mon, 22 Oct 2012 16:22:23 -0700 (PDT) Message-ID: <5085D52E.9030102@gmail.com> Date: Mon, 22 Oct 2012 19:22:22 -0400 From: Kyle User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:16.0) Gecko/20121012 Thunderbird/16.0.1 MIME-Version: 1.0 To: "Speakup is a screen review system for Linux." Subject: Re: arch 3.6.2 kernel References: In-Reply-To: Content-Type: multipart/mixed; boundary="------------050208060900010704070107" X-BeenThere: speakup@braille.uwo.ca X-Mailman-Version: 2.1.15 Precedence: list Reply-To: "Speakup is a screen review system for Linux." List-Id: "Speakup is a screen review system for Linux." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 22 Oct 2012 23:22:25 -0000 This is a multi-part message in MIME format. --------------050208060900010704070107 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit The base Arch system now uses systemd by default, but the version of espeakup in community doesn't yet have a working systemd unit file. I have sent a working unit file to the devs, and it should be released to the repos shortly. Until then, save the unit file I'm attaching here to /etc/systemd/system/multi-user.target.wants/espeakup.service. You will also need to be sure that speakup and speakup_soft are loaded automatically at boot time. To do this, create a file called /etc/modules-load.d/speakup.conf and include the following lines speakup speakup_soft Note that you may reboot the Talking Arch installer, mount the new installation and run arch-chroot to do all this with speech feedback. The next time you boot the new system, it should start speaking automatically. Hope this helps. ~Kyle --------------050208060900010704070107 Content-Type: text/plain; charset=UTF-8; name="espeakup.service" Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename="espeakup.service" [Unit] Description=Software speech output for Speakup using eSpeak [Service] Type=forking PIDFile=/var/run/espeakup.pid ExecStart=/usr/bin/espeakup ExecReload=/bin/kill -HUP $MAINPID Restart=always [Install] WantedBy=multi-user.target --------------050208060900010704070107--