Authentication-Results: mail-b.sr.ht; dkim=pass header.d=johngebbie.com header.i=@johngebbie.com Received: from out-109.mta0.migadu.com (out-109.mta0.migadu.com [91.218.175.109]) by mail-b.sr.ht (Postfix) with ESMTPS id 6207311EF2C for ; Fri, 16 Dec 2022 16:52:01 +0000 (UTC) Mime-Version: 1.0 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=johngebbie.com; s=key1; t=1671209517; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:mime-version:mime-version:content-type:content-type: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=fOBREvq9hcpNUXG9AOd7FTGViYeofaL5OUTR+Q/XGHA=; b=LfEfIAbgqVhm/cLPCprPAZDnHWVAFQ/bLC92OSr8aghBR0twkQzc/aHcDagLBlD3g/g4bA /V+j3MFDe+Am+TMpVKN62tPktvPuUdUn9cs+XrdWmxQSOsskxhnN7Wzbg6Vl+Oc7zvfz9t ZMPLclUNtNyinEoMv/KZwgfvdsEfnaecfVAlDRNae2oH5nuMPNUvyBiJFBpUAwTU8Rnxx1 viSleNtxH+qYsU/DVCeIaua/LJJwpxQShI/gZcfoVnjjnr0vcDQOvPtb1Xn6nP5wmj2hg+ 9tLkVg2xF6hkf5Z+Kd2Nl9foVFljMu6DQ2d1NdjF9JWaUKXkklSAkd2Jdu3edw== Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset=UTF-8 Date: Fri, 16 Dec 2022 16:52:04 +0000 Message-Id: To: "sublime4" , "u.geb.public-inbox@lists.sr.ht" Subject: Re: Proper way to uninstall numen X-Report-Abuse: Please report any abuse attempt to abuse@migadu.com and include these headers. From: "John Gebbie" References: In-Reply-To: X-Migadu-Flow: FLOW_OUT Hi sublime, sucks you're still getting mistypes. The install scripts should overwrite all the old files anyway but worth a s= hot. (maybe try the rest of the email first) These should be all the paths that could possibly matter and some: /usr/local/bin/numen /usr/local/bin/displaying /usr/share/man/man1/numen.1 /usr/libexec/numen /etc/numen /usr/local/share/vosk-models /usr/bin/dotool /usr/bin/dotoolc /usr/bin/dotoold /usr/share/vosk-models /usr/bin/numen /usr/bin/displaying (You shouldn't have the last three which is where they'd be installed by a package manager.) I improved the install scripts a little, and should have fixed the multiple models issue, so `git pull` before reinstalling. I doubt it's a sound issue as the speech recognition only knows real words and can't output gobbledygook. Running `pgrep numen` should only output one number (just to make sure you'= ve only got one instance of numen running). dotool is the program that simulates typing. If the mistypes are only in specific programs, dotool may be typing too fast for them, and it would be good to know which programs. I'm even getting mistypes when I keep trying something like this: echo type this is a really really really really long sentence | dotool but numen sets dotool's typedelay (see `dotool -h`). You could try upping the delay by editing this line in handlers/kernel: alias dotool=3D'{ print "keydelay 8" "typedelay 4"; cat; } | dotool' to something like this: alias dotool=3D'{ print "keydelay 8" "typedelay 12"; cat; } | dotool' and reinstalling and restarting (you should notice slower typing of transcr= ipts).