From nobody Sun Jan 21 23:46:02 2024 X-Original-To: freebsd-questions@mlmmj.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mlmmj.nyi.freebsd.org (Postfix) with ESMTP id 4TJ93S66BRz581G0 for ; Sun, 21 Jan 2024 23:46:12 +0000 (UTC) (envelope-from freebsd@dreamchaser.org) Received: from ns.dreamchaser.org (ns.dreamchaser.org [66.109.141.57]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 client-signature ECDSA (P-256) client-digest SHA256) (Client CN "discoveriesinwood.com", Issuer "R3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4TJ93R5DPcz4Wv7 for ; Sun, 21 Jan 2024 23:46:11 +0000 (UTC) (envelope-from freebsd@dreamchaser.org) Authentication-Results: mx1.freebsd.org; dkim=none; dmarc=none; spf=pass (mx1.freebsd.org: domain of freebsd@dreamchaser.org designates 66.109.141.57 as permitted sender) smtp.mailfrom=freebsd@dreamchaser.org Received: from [192.168.151.122] (breakaway.dreamchaser.org [192.168.151.122]) by ns.dreamchaser.org (8.16.1/8.16.1) with ESMTP id 40LNk2lx044736 for ; Sun, 21 Jan 2024 16:46:02 -0700 (MST) (envelope-from freebsd@dreamchaser.org) Message-ID: <207bbb64-6576-4b45-8633-624b984fdf60@dreamchaser.org> Date: Sun, 21 Jan 2024 16:46:02 -0700 List-Id: User questions List-Archive: https://lists.freebsd.org/archives/freebsd-questions List-Help: List-Post: List-Subscribe: List-Unsubscribe: Sender: owner-freebsd-questions@freebsd.org X-BeenThere: freebsd-questions@freebsd.org MIME-Version: 1.0 User-Agent: Mozilla Thunderbird Content-Language: en-US To: FreeBSD Mailing List Reply-To: freebsd@dreamchaser.org From: Gary Aitken Subject: elisa configuration: QQmlComponent: Component is not ready Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit X-Greylist: inspected by milter-greylist-4.6.4 (ns.dreamchaser.org [192.168.151.101]); Sun, 21 Jan 2024 16:46:02 -0700 (MST) for IP:'192.168.151.122' DOMAIN:'breakaway.dreamchaser.org' HELO:'[192.168.151.122]' FROM:'freebsd@dreamchaser.org' RCPT:'' X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-4.6.4 (ns.dreamchaser.org [192.168.151.101]); Sun, 21 Jan 2024 16:46:02 -0700 (MST) X-Spamd-Bar: -- X-Spamd-Result: default: False [-2.84 / 15.00]; NEURAL_HAM_MEDIUM(-1.00)[-1.000]; NEURAL_HAM_LONG(-1.00)[-0.999]; NEURAL_HAM_SHORT(-0.65)[-0.650]; R_SPF_ALLOW(-0.20)[+mx]; MIME_GOOD(-0.10)[text/plain]; ONCE_RECEIVED(0.10)[]; XM_UA_NO_VERSION(0.01)[]; RCPT_COUNT_ONE(0.00)[1]; ASN(0.00)[asn:21947, ipnet:66.109.128.0/19, country:US]; TO_DN_ALL(0.00)[]; MIME_TRACE(0.00)[0:+]; RCVD_COUNT_ONE(0.00)[1]; ARC_NA(0.00)[]; R_DKIM_NA(0.00)[]; RCVD_TLS_LAST(0.00)[]; REPLYTO_ADDR_EQ_FROM(0.00)[]; FROM_EQ_ENVFROM(0.00)[]; FROM_HAS_DN(0.00)[]; MID_RHS_MATCH_FROM(0.00)[]; TO_MATCH_ENVRCPT_ALL(0.00)[]; DMARC_NA(0.00)[dreamchaser.org]; PREVIOUSLY_DELIVERED(0.00)[freebsd-questions@freebsd.org]; MLMMJ_DEST(0.00)[freebsd-questions@freebsd.org]; HAS_REPLYTO(0.00)[freebsd@dreamchaser.org] X-Rspamd-Queue-Id: 4TJ93R5DPcz4Wv7 I installed the pkg for the elisa music player to test a few things; it mostly seemed to work. However, after a system crash (unrelated), upon reboot when I start X everything is gawd-awful slow because baloo_file_extractor is running, apparently searching the world of my filesystem for what few music scraps are there. Killing the parent process running /usr/local/lib/libexec/baloo_file solves the cpu munching. Some searching says elisa can be configured not to do that, so I hit the hamburger menu for configure elisa and I see the message: QQmlComponent: Component is not ready Apparently the package does not contain whatever is necessary to deal with configuration. It's not clear to me from the makefile in audio/elisa what additional package might be needed. USE_KDE specifies baloo5 and configwidgets so it seems logical if baloo is running the widgets required for configuration would also be present. I seem to have a bunch of qt stuff installed but only kf5-kdeclarative-5.110.0 kf5-kded-5.110.0 for kde, both of which are required only by the elisa pkg It's not clear to me where the global config file for elisa is, nor what the content possibilities are. My local .config/elisarc shows only: [ElisaFileIndexer] RootPath[$e]=$HOME/Music [UiSettings] ColorScheme= $HOME/Music is missing stuff which was there when elisa was running originally (stuff I've deleted). Questions: 1. Is there a pkg I can install to get the config option to work? 2. Where is the global elisa config file, if it exists? 3. How to prevent the music indexer from running? Gary