From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-qc0-f170.google.com (mail-qc0-f170.google.com [209.85.216.170]) by speech.braille.uwo.ca (Postfix) with ESMTP id D5C9DC1A0DB for ; Mon, 29 Oct 2012 17:47:53 -0400 (EDT) Received: by mail-qc0-f170.google.com with SMTP id d42so3477546qca.29 for ; Mon, 29 Oct 2012 14:47:53 -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=EbZGzzTF0jz0d9qPxuv5m9SvulrzDgsv6Y+tpBH55+E=; b=HvHYoZQd9tVYg4tmImBucZ/Tzi8i2lVjX+l8CAph3yvXKEC9sfvIhN/E5EIDQjK4hp yphOGddzLH2Aoh/CdiJ2wBwjNP/4RMt1UjHpLeHJlnWufQqWYX70HYWHmfyiZs3iV2xg uQb91h4F9QSItYXWBLqvON+M6NbfNHr7DNLyKKqk71e/Rbe0Maxdellfp1DOgrtdznnS XCrQg2MkCPyGZx9uL6wtEZ+NdSRN1AUpdA8MOxj7v5Nz6aTZYUT3rBZ15QSSdgITpp54 r45EHATVDvW8gDv/kzKa/ynEWtr/cJ4SWbPE1O4MVfJpriQnjbjFksEl/xJWKXBO3sIt /a4g== Received: by 10.224.191.73 with SMTP id dl9mr19143219qab.18.1351547273305; Mon, 29 Oct 2012 14:47:53 -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 r13sm1414431qaa.20.2012.10.29.14.47.51 (version=SSLv3 cipher=OTHER); Mon, 29 Oct 2012 14:47:52 -0700 (PDT) Message-ID: <508EF987.90106@gmail.com> Date: Mon, 29 Oct 2012 17:47:51 -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 installation References: <6479E2B3-BB50-4B9B-8352-1087E06924EB@gmail.com> <507C6FD6.2080804@mjw.se> <507C72A3.6000605@mjw.se> <507C94BB.7070607@gmail.com> <507D00B2.7020206@mjw.se> <507D3B66.7050709@gmail.com> In-Reply-To: Content-Type: multipart/mixed; boundary="------------090504020501030405060703" 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, 29 Oct 2012 21:47:54 -0000 This is a multi-part message in MIME format. --------------090504020501030405060703 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit First of all, you will need to create /etc/modules-load.d/speakup.conf containing the following lines: speakup speakup_soft Once you have done this, or if you did it already, you need the attached file. I think it's not yet in the latest version of espeakup. Save the attached file as /etc/systemd/system/multi-user.target.wants/espeakup.service on your Arch installation. Then do sudo systemctl start espeakup sudo systemctl enable espeakup.service Speakup will start talking as soon as you enter the first command, and will begin speaking automatically at boot time on the next reboot after typing the second command. I hope the new systemd unit makes it into the released version soon. Note: a file similar to my attachment is now in the version of espeakup in community-testing, so enabling that repo for now to pull in the latest espeakup will also give you a talking system, although you will still need to be sure the service is enabled. sudo systemctl enable espeakup.service Hope this helps. ~Kyle --------------090504020501030405060703 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 --------------090504020501030405060703--