From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.io!.POSTED.blaine.gmane.org!not-for-mail From: Emanuel Berg Newsgroups: gmane.emacs.help Subject: Re: PGTK+ warning Date: Tue, 15 Nov 2022 16:14:30 +0100 Message-ID: <87wn7ww8q1.fsf@dataswamp.org> References: <87tu308r0y.fsf@gmail.com> Mime-Version: 1.0 Content-Type: text/plain Injection-Info: ciao.gmane.io; posting-host="blaine.gmane.org:116.202.254.214"; logging-data="29826"; mail-complaints-to="usenet@ciao.gmane.io" User-Agent: Gnus/5.13 (Gnus v5.13) To: help-gnu-emacs@gnu.org Cancel-Lock: sha1:FuXSDNw+2O/VeAWZ/C9j1cmvFy8= Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane-mx.org@gnu.org Tue Nov 15 17:39:53 2022 Return-path: Envelope-to: geh-help-gnu-emacs@m.gmane-mx.org Original-Received: from lists.gnu.org ([209.51.188.17]) by ciao.gmane.io with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.92) (envelope-from ) id 1ouyyW-0007Xp-S1 for geh-help-gnu-emacs@m.gmane-mx.org; Tue, 15 Nov 2022 17:39:52 +0100 Original-Received: from localhost ([::1] helo=lists1p.gnu.org) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1ouyyF-0001S7-Vb; Tue, 15 Nov 2022 11:39:36 -0500 Original-Received: from eggs.gnu.org ([2001:470:142:3::10]) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1ouxe6-0005nW-Fw for help-gnu-emacs@gnu.org; Tue, 15 Nov 2022 10:14:42 -0500 Original-Received: from ciao.gmane.io ([116.202.254.214]) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1ouxe4-0004no-Mn for help-gnu-emacs@gnu.org; Tue, 15 Nov 2022 10:14:42 -0500 Original-Received: from list by ciao.gmane.io with local (Exim 4.92) (envelope-from ) id 1ouxe2-0002Rl-J5 for help-gnu-emacs@gnu.org; Tue, 15 Nov 2022 16:14:38 +0100 X-Injected-Via-Gmane: http://gmane.org/ Mail-Followup-To: help-gnu-emacs@gnu.org Mail-Copies-To: never Received-SPF: pass client-ip=116.202.254.214; envelope-from=geh-help-gnu-emacs@m.gmane-mx.org; helo=ciao.gmane.io X-Spam_score_int: -15 X-Spam_score: -1.6 X-Spam_bar: - X-Spam_report: (-1.6 / 5.0 requ) BAYES_00=-1.9, HEADER_FROM_DIFFERENT_DOMAINS=0.25, SPF_HELO_NONE=0.001, SPF_PASS=-0.001 autolearn=no autolearn_force=no X-Spam_action: no action X-Mailman-Approved-At: Tue, 15 Nov 2022 11:39:33 -0500 X-BeenThere: help-gnu-emacs@gnu.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Users list for the GNU Emacs text editor List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane-mx.org@gnu.org Original-Sender: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane-mx.org@gnu.org Xref: news.gmane.io gmane.emacs.help:140973 Archived-At: Stefan Monnier via Users list for the GNU Emacs text editor wrote: >> Is there a way to disable this pop up? Right now it steals >> focus from Emacs, and it's a bit cumbersome to manually >> close it every time. > > Since you should likely (re)start Emacs every month or so, > it shouldn't be a problem. If you constantly start new Emacs > sessions, then maybe that's the problem you should > solve first. Agreed, but that can be tricky if the problem lies with the computer itself and not Emacs ... The fans collective dB(A) is computed to (db 18.9 14.7 15.9 15.9) ; 22.7 dB [Elisp last] The PSU is semi-passive Fractal Ion+ 560W Platinum, semi-passive [1] But there is still some always-on fan that annoys me enough to shut the whole thing of every time I don't use it Maybe the GPU which I don't need anyway LOL msi Nvidia Geforce GT 710, 2GB DDR3, PCI-E2.0, HDMI+DL-DVI-D ? What happens if I just remove it, can the CPU manage, does it fall back to that automatically? AMD4 x86_64 $ lscpu | grep name Model name: AMD Ryzen 3 3200G with Radeon Vega Graphics Hibernation is a possibility (actually I think I installed Debian with too little swap space) but hibernation breaks the network link so it isn't optimal either ... (That Elisp to do the dB is cool actually.) [1] https://dataswamp.org/~incal/ebchw/COMPUTER ;;; -*- lexical-binding: t -*- ;; ;; this file: ;; https://dataswamp.org/~incal/emacs-init/audio.el (require 'cl-lib) (defun db (d &rest ds) (let ((all (cons d ds)) (sum 0) ) (cl-loop for a in all do (cl-incf sum (expt 10 (/ a 10.0))) ) (* 10 (/ (log sum) (log 10))) )) ;; (db 15) ; 15 ;; (db 15 15) ; 18 ;; (db 15 15 15) ; 19.7 ;; (db 15 15 15 15) ; 21 -- underground experts united https://dataswamp.org/~incal