From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.io!.POSTED.blaine.gmane.org!not-for-mail From: Daniele Nicolodi Newsgroups: gmane.emacs.devel Subject: Re: Easy way to make Emacs look more "modern" Date: Mon, 11 Apr 2022 11:25:30 +0200 Message-ID: <52bcde14-7b94-f7f6-828f-2c39a300d0fa@grinta.net> References: Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 8bit Injection-Info: ciao.gmane.io; posting-host="blaine.gmane.org:116.202.254.214"; logging-data="23820"; mail-complaints-to="usenet@ciao.gmane.io" User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:91.0) Gecko/20100101 Thunderbird/91.7.0 To: emacs-devel@gnu.org Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane-mx.org@gnu.org Mon Apr 11 11:28:27 2022 Return-path: Envelope-to: ged-emacs-devel@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 1ndqLS-0005zm-Ad for ged-emacs-devel@m.gmane-mx.org; Mon, 11 Apr 2022 11:28:26 +0200 Original-Received: from localhost ([::1]:33216 helo=lists1p.gnu.org) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1ndqLR-0006nW-1n for ged-emacs-devel@m.gmane-mx.org; Mon, 11 Apr 2022 05:28:25 -0400 Original-Received: from eggs.gnu.org ([2001:470:142:3::10]:43984) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1ndqJ4-0004YW-OY for emacs-devel@gnu.org; Mon, 11 Apr 2022 05:26:03 -0400 Original-Received: from grinta.net ([109.74.203.128]:35176) by eggs.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1ndqIx-000582-3s for emacs-devel@gnu.org; Mon, 11 Apr 2022 05:25:55 -0400 Original-Received: from [192.168.1.220] (p4fe7177f.dip0.t-ipconnect.de [79.231.23.127]) (Authenticated sender: daniele) by grinta.net (Postfix) with ESMTPSA id 6073AE0500 for ; Mon, 11 Apr 2022 09:25:31 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=simple/simple; d=grinta.net; s=2020; t=1649669131; bh=NpxxOQmNmjJG5jlAG2/jUuDlqLbhOy/YmDmljc3pEGo=; h=Date:Subject:To:References:From:In-Reply-To:From; b=ovfaTADdB43qWI+3Bw5wp6S/kmnKdwcDLlHziUY5qwAGvMA/bHzMhsA03RWKrSH7w pj68ixNbgGQSNuFl/Up6DWhO30d4/hCCRcnFqJkCkpKFdU3BwNcb/69OFOWR1GEInj dEyaAiAnfmPc9HFgbaAho7RnoSZ3ZZNeeJgvu+5FvRiNxa+MvLzjvC/T1Ps74uC1Zy luiIL3X1wzNB2ckQlts3z/vfVC4bAUtyD7MeVNNTYIvpSinhBGE4I6BPsCO233+Cca unGzfiPrkR3TgxiZq+ma2tf0qIzAoxf19FEHOQUy+DNPnBH0LOupvONEGP4w1B0dv4 fu/pfkwPa2ohQ== Content-Language: en-US In-Reply-To: Received-SPF: pass client-ip=109.74.203.128; envelope-from=daniele@grinta.net; helo=grinta.net X-Spam_score_int: -20 X-Spam_score: -2.1 X-Spam_bar: -- X-Spam_report: (-2.1 / 5.0 requ) BAYES_00=-1.9, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, NICE_REPLY_A=-0.001, SPF_HELO_PASS=-0.001, SPF_PASS=-0.001, T_SCC_BODY_TEXT_LINE=-0.01 autolearn=ham autolearn_force=no X-Spam_action: no action X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: "Emacs development discussions." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-devel-bounces+ged-emacs-devel=m.gmane-mx.org@gnu.org Original-Sender: "Emacs-devel" Xref: news.gmane.io gmane.emacs.devel:288177 Archived-At: On 11/04/2022 10:49, Pedro Andres Aranda Gutierrez wrote: > Daniele> (set-face-attribute 'mode-line nil > Daniele>                     :height 110 > Daniele>                     :background "grey88" > Daniele>                     :box '(:line-width 4 :color "grey88" :style > nil)) > > I'm using >     (custom-set-faces >      '(mode-line           ((t (:inherit mode-line          :box > (:line-width 8 :style flat-button)))) t) >      '(mode-line-inactive  ((t (:inherit mode-line-inactive :box > (:line-width 8 :style flat-button)))) t)) > > To get a broader mode-line. flat-button is part of Emacs28 According to the manual nil or flat-button mean the same thing. Cheers, Dan