From debbugs-submit-bounces@debbugs.gnu.org Fri Jan 01 09:59:17 2021 Received: (at submit) by debbugs.gnu.org; 1 Jan 2021 14:59:17 +0000 Received: from localhost ([127.0.0.1]:34102 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1kvLtd-0004ID-IU for submit@debbugs.gnu.org; Fri, 01 Jan 2021 09:59:17 -0500 Received: from lists.gnu.org ([209.51.188.17]:43000) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1kvLI6-0008GV-05 for submit@debbugs.gnu.org; Fri, 01 Jan 2021 09:20:32 -0500 Received: from eggs.gnu.org ([2001:470:142:3::10]:41728) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1kvLI1-0005ns-Rt for guix-patches@gnu.org; Fri, 01 Jan 2021 09:20:26 -0500 Received: from mail.elken.dev ([165.22.120.78]:51395) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_128_GCM_SHA256:128) (Exim 4.90_1) (envelope-from ) id 1kvLHw-0006Wy-0F for guix-patches@gnu.org; Fri, 01 Jan 2021 09:20:25 -0500 Received: from authenticated-user (mail.elken.dev [165.22.120.78]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits)) (No client certificate requested) by mail.elken.dev (Postfix) with ESMTPSA id D3AD93F14E; Fri, 1 Jan 2021 15:20:16 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=simple/simple; d=elken.dev; s=mail; t=1609510816; bh=pfOiIgeWh4NHYNTWjRm07+LzB5QfEETB7EYmp8FFw1g=; h=From:To:Cc:Subject:Date:From; b=PTCFu3wU6bXJcRfnCxGq0MKuoAm49Ah2wq9ZiKQrdHQR2wUKyoHv719vzRtvQaPJ4 GMv8R8Ub/k+XViYG8W3IxywlnNc73r4Ri3KaYF+E52Ypkdn0V9GrXLXCV+QPygs6v1 TBjU65ecKxhKUc/Bafmn1+6SFqNcWciJZJBvV1oJB3uCDjHYKnyg9c8iNEzSKwJbm/ i+HjkImEZA2beT9JPlLUhTRNdcTPAt+VqrYgeso88wBC6txytDqLUL2dSG7xMyePXC UtdHF7D0X/DlPDSLxTa3zLgwEOtiib8ipMEb3h1afHn2VpVVUkzPjBsyv14zWNogP0 GixM6hzH4Atwg== From: Ellis Kenyo To: guix-patches@gnu.org Subject: [PATCH] Add nord-theme Date: Fri, 1 Jan 2021 14:20:14 +0000 Message-Id: <20210101142014.25296-1-me@elken.dev> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Received-SPF: pass client-ip=165.22.120.78; envelope-from=me@elken.dev; helo=mail.elken.dev 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, SPF_HELO_PASS=-0.001, SPF_PASS=-0.001 autolearn=ham autolearn_force=no X-Spam_action: no action X-Spam-Score: -1.4 (-) X-Debbugs-Envelope-To: submit X-Mailman-Approved-At: Fri, 01 Jan 2021 09:59:16 -0500 Cc: Ellis Kenyo X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -2.4 (--) --- gnu/packages/gnome-xyz.scm | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) diff --git a/gnu/packages/gnome-xyz.scm b/gnu/packages/gnome-xyz.scm index 2eb08da50f..8de59dac2e 100644 --- a/gnu/packages/gnome-xyz.scm +++ b/gnu/packages/gnome-xyz.scm @@ -649,3 +649,28 @@ language specification for the Language Server Protocol (LSP). This tool is used in text editing environments to provide a complete and integrated feature-set for programming Vala effectively.") (license license:lgpl2.1+))) + +(define-public nord-theme + (let ((commit "07d764c5ebd5706e73d2e573f1a983e37b318915") + (revision "0")) + (package + (name "nord-theme") + (version (git-version "1.9.0" revision commit)) + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/EliverLara/Nordic") + (commit commit))) + (sha256 + (base32 + "0y2s9d6h1b195s6afp1gb5rb1plfslkpbw2brd30a9d66wfvsqk0")) + (file-name (git-file-name name version)))) + (build-system copy-build-system) + (arguments + `(#:install-plan + `(("." "share/themes/nord" #:exclude ("README.md" "LICENSE" "Art/" "package.json" "package-lock.json" "Gulpfile.js"))))) + (home-page "https://github.com/EliverLara/Nordic") + (synopsis "Dark Gtk3.20+ theme created using the awesome Nord color pallete.") + (description "Nordic is a Gtk3.20+ theme created using the awesome Nord color pallete.") + (license license:gpl3)))) -- 2.29.2 From debbugs-submit-bounces@debbugs.gnu.org Fri Jan 01 21:59:17 2021 Received: (at submit) by debbugs.gnu.org; 2 Jan 2021 02:59:17 +0000 Received: from localhost ([127.0.0.1]:35103 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1kvX8P-00018U-CF for submit@debbugs.gnu.org; Fri, 01 Jan 2021 21:59:17 -0500 Received: from lists.gnu.org ([209.51.188.17]:41406) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1kvX8O-00018M-C4 for submit@debbugs.gnu.org; Fri, 01 Jan 2021 21:59:16 -0500 Received: from eggs.gnu.org ([2001:470:142:3::10]:41344) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1kvX8O-0004pc-3X for guix-patches@gnu.org; Fri, 01 Jan 2021 21:59:16 -0500 Received: from wout4-smtp.messagingengine.com ([64.147.123.20]:53353) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1kvX8M-0004Lr-F3 for guix-patches@gnu.org; Fri, 01 Jan 2021 21:59:15 -0500 Received: from compute3.internal (compute3.nyi.internal [10.202.2.43]) by mailout.west.internal (Postfix) with ESMTP id 50EB19D2; Fri, 1 Jan 2021 21:59:11 -0500 (EST) Received: from mailfrontend2 ([10.202.2.163]) by compute3.internal (MEProxy); Fri, 01 Jan 2021 21:59:11 -0500 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=famulari.name; h=date:from:to:cc:subject:message-id:references:mime-version :content-type:in-reply-to; s=mesmtp; bh=Dcl4Zb7L6CVi7OZWaTzRJoZV BtVy0M3oFvVSMxX7Pqw=; b=mo+QZadn8FRZcQ597Vlqs1Ip1U5oE87WsLJw9Ad3 3xcLcO5sjP1k57HCaVacqytqsF0YoMP/ruOqcM2xdqGWXuNP5B0ygyhGbOEbLhal iip3WZcl8Dm5WTy3tml/1TLd9WHE0TBh/78viLth5/7DO8BQELfvGMSmKK0RAH8Z +Lk= DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d= messagingengine.com; h=cc:content-type:date:from:in-reply-to :message-id:mime-version:references:subject:to:x-me-proxy :x-me-proxy:x-me-sender:x-me-sender:x-sasl-enc; s=fm1; bh=Dcl4Zb 7L6CVi7OZWaTzRJoZVBtVy0M3oFvVSMxX7Pqw=; b=M+0d2iGBdu5I2mLrTA+OO+ 5TC/LIMsfKQHrDZAn6pdQppAf3ITn9DsoP7+3T9iOaGjt6dVBaFo02wWEKrQq+yf 9hX4GWs+aaX3X/eMwdW+ViiMfDT9khgDJLsp0y664HXoUA0YcsFl6znz+51lCnH0 winPdJ0gAGMFUSjTk5MYiThr1U+b5US+0m8bh3K2/vH6umkEdqcVX4cOuH5qUtn6 ch570fpKeektSdllBc+3/+eK/tE91Gw6REWkjHZjMjOoBRt+95QeNrI26KY6kCxC YnlIlFLbGBY8sS9cpk5a/3n8TvRRb2rGqDtlUzTWO5SsDm+gi326c86X+xLChXkA == X-ME-Sender: X-ME-Proxy-Cause: gggruggvucftvghtrhhoucdtuddrgedujedrvddvkedgheehucetufdoteggodetrfdotf fvucfrrhhofhhilhgvmecuhfgrshhtofgrihhlpdfqfgfvpdfurfetoffkrfgpnffqhgen uceurghilhhouhhtmecufedttdenucesvcftvggtihhpihgvnhhtshculddquddttddmne cujfgurhepfffhvffukfhfgggtuggjsehttdertddttddvnecuhfhrohhmpefnvghoucfh rghmuhhlrghrihcuoehlvghosehfrghmuhhlrghrihdrnhgrmhgvqeenucggtffrrghtth gvrhhnpeehgfelvefhtddtfeehiedtgfehffffffelvdelhffgkedtteehgfeugfehgeet hfenucffohhmrghinhepghhithhhuhgsrdgtohhmnecukfhppeejfedrudeguddruddvje drudegieenucevlhhushhtvghrufhiiigvpedtnecurfgrrhgrmhepmhgrihhlfhhrohhm pehlvghosehfrghmuhhlrghrihdrnhgrmhgv X-ME-Proxy: Received: from localhost (c-73-141-127-146.hsd1.pa.comcast.net [73.141.127.146]) by mail.messagingengine.com (Postfix) with ESMTPA id 77A2C1080057; Fri, 1 Jan 2021 21:59:10 -0500 (EST) Date: Fri, 1 Jan 2021 21:59:08 -0500 From: Leo Famulari To: Ellis Kenyo , Ellis Kenyo via Guix-patches Subject: Re: [bug#45598] [PATCH] Add nord-theme Message-ID: References: <20210101142014.25296-1-me@elken.dev> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20210101142014.25296-1-me@elken.dev> Received-SPF: pass client-ip=64.147.123.20; envelope-from=leo@famulari.name; helo=wout4-smtp.messagingengine.com X-Spam_score_int: -27 X-Spam_score: -2.8 X-Spam_bar: -- X-Spam_report: (-2.8 / 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, RCVD_IN_DNSWL_LOW=-0.7, RCVD_IN_MSPIKE_H3=0.001, RCVD_IN_MSPIKE_WL=0.001, SPF_HELO_PASS=-0.001, SPF_PASS=-0.001 autolearn=ham autolearn_force=no X-Spam_action: no action X-Spam-Score: -1.4 (-) X-Debbugs-Envelope-To: submit Cc: 45598@debbugs.gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -2.4 (--) On Fri, Jan 01, 2021 at 02:20:14PM +0000, Ellis Kenyo via Guix-patches via wrote: > +(define-public nord-theme Thanks! > + (url "https://github.com/EliverLara/Nordic") Should it be called "nordic-theme" instead? That seems to be the name they picked. From debbugs-submit-bounces@debbugs.gnu.org Sat Jan 02 02:14:34 2021 Received: (at submit) by debbugs.gnu.org; 2 Jan 2021 07:14:34 +0000 Received: from localhost ([127.0.0.1]:38932 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1kvb7R-00031G-Mo for submit@debbugs.gnu.org; Sat, 02 Jan 2021 02:14:34 -0500 Received: from lists.gnu.org ([209.51.188.17]:43430) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1kvZcU-0000Uh-HV for submit@debbugs.gnu.org; Sat, 02 Jan 2021 00:38:30 -0500 Received: from eggs.gnu.org ([2001:470:142:3::10]:59814) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1kvZcU-0000nc-AT for guix-patches@gnu.org; Sat, 02 Jan 2021 00:38:30 -0500 Received: from mail.elken.dev ([165.22.120.78]:34519) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_128_GCM_SHA256:128) (Exim 4.90_1) (envelope-from ) id 1kvZcR-0001Sc-L2 for guix-patches@gnu.org; Sat, 02 Jan 2021 00:38:29 -0500 Received: from authenticated-user (mail.elken.dev [165.22.120.78]) (using TLSv1.3 with cipher TLS_AES_128_GCM_SHA256 (128/128 bits)) (No client certificate requested) by mail.elken.dev (Postfix) with ESMTPSA id E09DE3F142; Sat, 2 Jan 2021 06:38:24 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=simple/simple; d=elken.dev; s=mail; t=1609565905; bh=SgZmR2YYuwdhJcBesetkYBCrBw5gmH8QZVex54Olr5M=; h=In-Reply-To:References:Subject:From:Date:To:CC:From; b=C8hh6g4YdToUk1JTw/CRGLfnOZTzWHCFGcD/Rmhqdn4RFyPABeYgW3m6Wl9L+ubLJ ii/QZZ0RMKu89FvHuic51DZ8YpomdWEKwVythVc4UbsImK9xNjmEco0DoNqID/aFPp XfHNXY/z7T5YoXN+oHFZ82HyPWAy7vupMaTTk/cts2HpDQUZbOKeArU3EP3pS3oayU hXD+GrV/NovMn0gKjdcGLcDxkWGE95H3HSqQeOT0gDT1066GEFMVzg4rTyDV75hvuq hIBT40OdxM4AIgQQPmbxqrbcYQIRT2+Mbg4FAgExslztC6s5NI9mw3ww1HzN4rbADY dgo6kJvc/MKKw== In-Reply-To: References: <20210101142014.25296-1-me@elken.dev> X-Referenced-Uid: 2365 Thread-Topic: Re: [bug#45598] [PATCH] Add nord-theme X-Is-Generated-Message-Id: true MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----UQEQ0SBRMZ6CYL65H88VKNE2UXEXE8" Content-Transfer-Encoding: 7bit Subject: Re: [bug#45598] [PATCH] Add nord-theme From: =?UTF-8?Q?Ellis_Keny=C5=91?= Date: Sat, 02 Jan 2021 05:38:23 +0000 To: Leo Famulari Message-ID: <596b17f7-bff7-4905-9ed4-6eac405160b6@elken.dev> Received-SPF: pass client-ip=165.22.120.78; envelope-from=me@elken.dev; helo=mail.elken.dev 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, HTML_MESSAGE=0.001, SPF_HELO_PASS=-0.001, SPF_PASS=-0.001 autolearn=ham autolearn_force=no X-Spam_action: no action X-Spam-Score: -1.4 (-) X-Debbugs-Envelope-To: submit X-Mailman-Approved-At: Sat, 02 Jan 2021 02:14:32 -0500 Cc: 45598@debbugs.gnu.org, guix-patches@gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -2.4 (--) ------UQEQ0SBRMZ6CYL65H88VKNE2UXEXE8 Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset=UTF-8 The original theme it's based on is called "Nord" and that's the expectatio= n from a user perspective, I'm not quite sure why they renamed it=2E On 2= Jan 2021, 03:05, at 03:05, Leo Famulari wrote: >On F= ri, Jan 01, 2021 at 02:20:14PM +0000, Ellis Kenyo via Guix-patches >via wro= te: >> +(define-public nord-theme > >Thanks! > >> + (url "https://github= =2Ecom/EliverLara/Nordic") > >Should it be called "nordic-theme" instead? T= hat seems to be the name >they picked=2E ------UQEQ0SBRMZ6CYL65H88VKNE2UXEXE8 Content-Type: text/html; charset=utf-8 Content-Transfer-Encoding: quoted-printable
The original= theme it's based on is called "Nord" and that's the expectation from a use= r perspective, I'm not quite sure why they renamed it=2E
On 2 Jan 2021, at 03:05, Leo Famulari <leo@famulari=2Ename> wrote= :
On Fri, Jan 01, 2021 at 02:20:14PM +0000, Ellis Kenyo via Guix-patch=
es via wrote:
+(define= -public nord-theme

Thanks!

+ (url "https://github=2Ecom/EliverLara/Nordic")

Should it be called "nordic-theme" instead? That seems to be the name=
they picked=2E
------UQEQ0SBRMZ6CYL65H88VKNE2UXEXE8-- From debbugs-submit-bounces@debbugs.gnu.org Sun Jan 03 18:34:08 2021 Received: (at submit) by debbugs.gnu.org; 3 Jan 2021 23:34:08 +0000 Received: from localhost ([127.0.0.1]:38877 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1kwCsx-0001Qa-Rh for submit@debbugs.gnu.org; Sun, 03 Jan 2021 18:34:08 -0500 Received: from lists.gnu.org ([209.51.188.17]:45236) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1kwCsw-0001QS-AV for submit@debbugs.gnu.org; Sun, 03 Jan 2021 18:34:06 -0500 Received: from eggs.gnu.org ([2001:470:142:3::10]:59004) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1kwCsw-0006Jl-3W for guix-patches@gnu.org; Sun, 03 Jan 2021 18:34:06 -0500 Received: from out4-smtp.messagingengine.com ([66.111.4.28]:37257) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1kwCsu-0002KY-37 for guix-patches@gnu.org; Sun, 03 Jan 2021 18:34:05 -0500 Received: from compute3.internal (compute3.nyi.internal [10.202.2.43]) by mailout.nyi.internal (Postfix) with ESMTP id 94C755C00D5; Sun, 3 Jan 2021 18:34:03 -0500 (EST) Received: from mailfrontend1 ([10.202.2.162]) by compute3.internal (MEProxy); Sun, 03 Jan 2021 18:34:03 -0500 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=famulari.name; h=date:from:to:cc:subject:message-id:references:mime-version :content-type:content-transfer-encoding:in-reply-to; s=mesmtp; bh=8RPwkbPQfHjZPPkAnr7B9DvqJuhH8LvTJqyX7h16sdk=; b=m2MkJoMqpjbJ RrADGG8uWYtKdcCQJt/iWC2oMg4OSSfnchE2OrU4AWUwLQS6k9CKOYNELyhc8lXs m3yrai8WDIiWonKDXWJUzH6FMV15LnLAY5F9wnaxeKGbUAKVCNUh/tjLnzZXPOFC IpHW68nt3AeEkaLFY6rrB6UtjNNed80= DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d= messagingengine.com; h=cc:content-transfer-encoding:content-type :date:from:in-reply-to:message-id:mime-version:references :subject:to:x-me-proxy:x-me-proxy:x-me-sender:x-me-sender :x-sasl-enc; s=fm1; bh=8RPwkbPQfHjZPPkAnr7B9DvqJuhH8LvTJqyX7h16s dk=; b=fR9usLqsDVQfqHsOCqsBuOI3vwAisSE1KFn5KwnNL8fWiIz9wn5EYoajF pZ1Hx4P7dqWiiXDzeRyGaZXfpBQzxRSz92t2PdcgM+0Pl4dwViJv4apEWpHqMvZq NX9/9GoUYe7yr0to6hYg89CeOtU8+2WL1mJtg3GzNA2/P7IKnSbBu6b78pP/erky m4cWDVllmncNBdHybG01WaCkGu2YK1Xztb9VdKZIQ7vGL4sPh/XjhDe7XneGAY24 Xn3401QWl1dUEaSJqQ6AEVGEOOmHT6BO3O6UugodETAxCscUy7MnPz/YAPIAyGki kjTfDLEk0fDA3HQbo7KPISIohGiYg== X-ME-Sender: X-ME-Proxy-Cause: gggruggvucftvghtrhhoucdtuddrgedujedrvdefvddgudduucetufdoteggodetrfdotf fvucfrrhhofhhilhgvmecuhfgrshhtofgrihhlpdfqfgfvpdfurfetoffkrfgpnffqhgen uceurghilhhouhhtmecufedttdenucenucfjughrpeffhffvuffkfhggtggugfgjsehtke ertddttdejnecuhfhrohhmpefnvghoucfhrghmuhhlrghrihcuoehlvghosehfrghmuhhl rghrihdrnhgrmhgvqeenucggtffrrghtthgvrhhnpeegjeeggeehtddugfffuddtvdfffe ffjeekffffveffheegvddvuedtffekjeejjeenucfkphepjeefrddugedurdduvdejrddu geeinecuvehluhhsthgvrhfuihiivgeptdenucfrrghrrghmpehmrghilhhfrhhomheplh gvohesfhgrmhhulhgrrhhirdhnrghmvg X-ME-Proxy: Received: from localhost (c-73-141-127-146.hsd1.pa.comcast.net [73.141.127.146]) by mail.messagingengine.com (Postfix) with ESMTPA id AD239240057; Sun, 3 Jan 2021 18:34:02 -0500 (EST) Date: Sun, 3 Jan 2021 18:34:01 -0500 From: Leo Famulari To: Ellis =?utf-8?B?S2VuecWR?= Subject: Re: [bug#45598] [PATCH] Add nord-theme Message-ID: References: <20210101142014.25296-1-me@elken.dev> <596b17f7-bff7-4905-9ed4-6eac405160b6@elken.dev> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Disposition: inline Content-Transfer-Encoding: 8bit In-Reply-To: <596b17f7-bff7-4905-9ed4-6eac405160b6@elken.dev> Received-SPF: pass client-ip=66.111.4.28; envelope-from=leo@famulari.name; helo=out4-smtp.messagingengine.com X-Spam_score_int: -27 X-Spam_score: -2.8 X-Spam_bar: -- X-Spam_report: (-2.8 / 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, RCVD_IN_DNSWL_LOW=-0.7, RCVD_IN_MSPIKE_H3=-0.01, RCVD_IN_MSPIKE_WL=-0.01, SPF_HELO_PASS=-0.001, SPF_PASS=-0.001 autolearn=ham autolearn_force=no X-Spam_action: no action X-Spam-Score: -1.4 (-) X-Debbugs-Envelope-To: submit Cc: 45598@debbugs.gnu.org, guix-patches@gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -2.4 (--) On Sat, Jan 02, 2021 at 05:38:23AM +0000, Ellis Kenyő wrote: > The original theme it's based on is called "Nord" and that's the expectation from a user perspective, I'm not quite sure why they renamed it. Sorry to be a stickler but we usually use upstream names. We might make exceptions if other distros rename it as well, or if there is some widely used interface with the other name. Is that the case? If so, we can call it nord-theme. Otherwise we'll use nordic-theme. From debbugs-submit-bounces@debbugs.gnu.org Sun Jan 03 21:02:31 2021 Received: (at submit) by debbugs.gnu.org; 4 Jan 2021 02:02:31 +0000 Received: from localhost ([127.0.0.1]:39052 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1kwFCZ-0004z4-Gq for submit@debbugs.gnu.org; Sun, 03 Jan 2021 21:02:31 -0500 Received: from lists.gnu.org ([209.51.188.17]:45490) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1kwFCX-0004yw-Or for submit@debbugs.gnu.org; Sun, 03 Jan 2021 21:02:30 -0500 Received: from eggs.gnu.org ([2001:470:142:3::10]:50172) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1kwFCX-0004z0-HX for guix-patches@gnu.org; Sun, 03 Jan 2021 21:02:29 -0500 Received: from mail.elken.dev ([165.22.120.78]:40585) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_128_GCM_SHA256:128) (Exim 4.90_1) (envelope-from ) id 1kwFCS-0002bH-Gj for guix-patches@gnu.org; Sun, 03 Jan 2021 21:02:29 -0500 Received: from authenticated-user (mail.elken.dev [165.22.120.78]) (using TLSv1.3 with cipher TLS_AES_128_GCM_SHA256 (128/128 bits)) (No client certificate requested) by mail.elken.dev (Postfix) with ESMTPSA id 974DA3F156; Mon, 4 Jan 2021 03:02:17 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=simple/simple; d=elken.dev; s=mail; t=1609725737; bh=8fPwpAAD5Pvipa22Lw2piNPO7CEKycM+PBkeMpATKnQ=; h=In-Reply-To:References:Subject:From:Date:To:CC:From; b=Ys2Ax0BTjn1DoSZuVSRd3BoGLDNHguWdPUoafwXqY/MHD2T3VeyBHb7Fl6exlKdrr li1f++OLRiSoubuOoh/SaDKH6mm1XfClD59/ihYKrd++Ux4ekjxyJNuPiHJPHg4BGQ D0AmLa8enzRjjw96HvNBhKKSPGvbx4u9HFL2HWH8heOGSCUeEbkeCb0j4UQVL4+13Y XOHI2fHX12S8S+SwkE0qumotwt5NaxtnKuEzSkQ9uUIWGQ+sTJKK/xppEc9TCQrkvf lQ7Q46hj6CdwIK5y9OVWV/ngAFS8lvDPHWRejKc4DFYxNHSPsVf60mk9vdlA8biAAo amRV4MIKEEfzQ== In-Reply-To: References: <20210101142014.25296-1-me@elken.dev> <596b17f7-bff7-4905-9ed4-6eac405160b6@elken.dev> X-Referenced-Uid: 2375 Thread-Topic: Re: [bug#45598] [PATCH] Add nord-theme X-Is-Generated-Message-Id: true MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----ICD0LRXS9N6NYEPEVUG0IP1LYYNHRK" Content-Transfer-Encoding: 7bit Subject: Re: [bug#45598] [PATCH] Add nord-theme From: =?UTF-8?Q?Ellis_Keny=C5=91?= Date: Mon, 04 Jan 2021 02:02:17 +0000 To: Leo Famulari Message-ID: <97c66616-f04a-4558-b7f5-701f22594ecf@elken.dev> Received-SPF: pass client-ip=165.22.120.78; envelope-from=me@elken.dev; helo=mail.elken.dev 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, HTML_MESSAGE=0.001, SPF_HELO_PASS=-0.001, SPF_PASS=-0.001 autolearn=ham autolearn_force=no X-Spam_action: no action X-Spam-Score: -1.4 (-) X-Debbugs-Envelope-To: submit Cc: 45598@debbugs.gnu.org, guix-patches@gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -2.4 (--) ------ICD0LRXS9N6NYEPEVUG0IP1LYYNHRK Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset=UTF-8 I don't mind either way so I'm happy to have it merged as nordic! =E2=98=BA= =EF=B8=8F On 3 Jan 2021, 23:40, at 23:40, Leo Famulari wrote: >On Sat, Jan 02, 2021 at 05:38:23AM +0000, Ellis Keny=C5=91 wrote= : >> The original theme it's based on is called "Nord" and that's the >expe= ctation from a user perspective, I'm not quite sure why they >renamed it=2E= > >Sorry to be a stickler but we usually use upstream names=2E We might ma= ke >exceptions if other distros rename it as well, or if there is some >wid= ely used interface with the other name=2E > >Is that the case? If so, we ca= n call it nord-theme=2E Otherwise we'll use >nordic-theme=2E ------ICD0LRXS9N6NYEPEVUG0IP1LYYNHRK Content-Type: text/html; charset=utf-8 Content-Transfer-Encoding: quoted-printable
I don't mind= either way so I'm happy to have it merged as nordic! =E2=98=BA=EF=B8=8F
On 3 Jan 2021, at 23:40, Leo Famulari <<= a href=3D"mailto:leo@famulari=2Ename" target=3D"_blank">leo@famulari=2Ename= > wrote:
=
On Sat, Jan 02, 2021 at 05:38:23AM +0000, Ellis Keny=
=C5=91 wrote:
The orig= inal theme it's based on is called "Nord" and that's the expectation from a= user perspective, I'm not quite sure why they renamed it=2E

Sorry to be a stickler but we usually use upstream names=2E We might = make
exceptions if other distros rename it as well, or if there is some<= br>widely used interface with the other name=2E

Is that the case? If= so, we can call it nord-theme=2E Otherwise we'll use
nordic-theme=2E
------ICD0LRXS9N6NYEPEVUG0IP1LYYNHRK-- From debbugs-submit-bounces@debbugs.gnu.org Sun Jan 03 21:40:55 2021 Received: (at 45598-done) by debbugs.gnu.org; 4 Jan 2021 02:40:55 +0000 Received: from localhost ([127.0.0.1]:39077 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1kwFnj-0005rq-K0 for submit@debbugs.gnu.org; Sun, 03 Jan 2021 21:40:55 -0500 Received: from out5-smtp.messagingengine.com ([66.111.4.29]:58389) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1kwFnh-0005rc-3R for 45598-done@debbugs.gnu.org; Sun, 03 Jan 2021 21:40:53 -0500 Received: from compute4.internal (compute4.nyi.internal [10.202.2.44]) by mailout.nyi.internal (Postfix) with ESMTP id C944C5C0125; Sun, 3 Jan 2021 21:40:47 -0500 (EST) Received: from mailfrontend1 ([10.202.2.162]) by compute4.internal (MEProxy); Sun, 03 Jan 2021 21:40:47 -0500 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=famulari.name; h=date:from:to:cc:subject:message-id:references:mime-version :content-type:content-transfer-encoding:in-reply-to; s=mesmtp; bh=Vd/T7MmDQUMQ092CUMOxSgy6UgBU/Q7hUWCjcIXC97k=; b=sxMYOV08LVQQ ot5sZKG+PXoWAjDlAO/c+2zKarqJQgUrtC7Rb5SI3NiNDGnNyzObNkYmR+Iod7vj gVWwyzH8/oEfphka3P5DOOR0Oji6Zf9FcIKMtgMDNN+2NP6fa2MMNNPe4obNDHRe ntLM897JiZEGyd0JDua5uY5wLe3INOc= DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d= messagingengine.com; h=cc:content-transfer-encoding:content-type :date:from:in-reply-to:message-id:mime-version:references :subject:to:x-me-proxy:x-me-proxy:x-me-sender:x-me-sender :x-sasl-enc; s=fm1; bh=Vd/T7MmDQUMQ092CUMOxSgy6UgBU/Q7hUWCjcIXC9 7k=; b=k4sgbmUHd9+I14hjGcRIN5VpZBTKcAvc0EkHvJfN81dPqvc8z5NWQsmX5 jJbUhDItocm3D2Ve5ec80VrYkEgMrO+5lt4CeXX+kS2uUN9FpGszAKimozkysUwh XpFVd8h4PbBSa5n0bO5lULTfAzmDqgdJ9Gv+d9Oe9YUBS/Nw3eaotAiAcfXforpd TphiRxQMv55RnUQCSE1nHhynpyLe42s502Gf5GXm2UnWoW4aKKx8k2gyc7u0BBOS m6cgUn4aWAGCZ+4/Hl4YbraF4Itmh0ZmX7ofvhPnhprLPYRQNzTxiVt/U6p1v9OF 4/muddomvAhjxa8Dda2pW/HX/4SIg== X-ME-Sender: X-ME-Proxy-Cause: gggruggvucftvghtrhhoucdtuddrgedujedrvdefvddggeelucetufdoteggodetrfdotf fvucfrrhhofhhilhgvmecuhfgrshhtofgrihhlpdfqfgfvpdfurfetoffkrfgpnffqhgen uceurghilhhouhhtmecufedttdenucenucfjughrpeffhffvuffkfhggtggugfgjsehtke ertddttdejnecuhfhrohhmpefnvghoucfhrghmuhhlrghrihcuoehlvghosehfrghmuhhl rghrihdrnhgrmhgvqeenucggtffrrghtthgvrhhnpefgudffteettdekkeduhffgfefgie efgeeuieetudejffelieduueeifffgudfgudenucffohhmrghinhepghhnuhdrohhrghen ucfkphepjeefrddugedurdduvdejrddugeeinecuvehluhhsthgvrhfuihiivgeptdenuc frrghrrghmpehmrghilhhfrhhomheplhgvohesfhgrmhhulhgrrhhirdhnrghmvg X-ME-Proxy: Received: from localhost (c-73-141-127-146.hsd1.pa.comcast.net [73.141.127.146]) by mail.messagingengine.com (Postfix) with ESMTPA id 6D75A24005D; Sun, 3 Jan 2021 21:40:47 -0500 (EST) Date: Sun, 3 Jan 2021 21:40:45 -0500 From: Leo Famulari To: Ellis =?utf-8?B?S2VuecWR?= Subject: Re: [bug#45598] [PATCH] Add nord-theme Message-ID: References: <20210101142014.25296-1-me@elken.dev> <596b17f7-bff7-4905-9ed4-6eac405160b6@elken.dev> <97c66616-f04a-4558-b7f5-701f22594ecf@elken.dev> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Disposition: inline Content-Transfer-Encoding: 8bit In-Reply-To: <97c66616-f04a-4558-b7f5-701f22594ecf@elken.dev> X-Spam-Score: -0.7 (/) X-Debbugs-Envelope-To: 45598-done Cc: 45598-done@debbugs.gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -1.7 (-) On Mon, Jan 04, 2021 at 02:02:17AM +0000, Ellis Kenyő wrote: > I don't mind either way so I'm happy to have it merged as nordic! ☺️ Okay! Pushed as fdfc1c81ba018dd808b0dfd9827a73262c716808 with the name "nordic-theme. Thanks! https://git.savannah.gnu.org/cgit/guix.git/commit/?id=fdfc1c81ba018dd808b0dfd9827a73262c716808 From unknown Tue Sep 09 21:33:00 2025 Received: (at fakecontrol) by fakecontrolmessage; To: internal_control@debbugs.gnu.org From: Debbugs Internal Request Subject: Internal Control Message-Id: bug archived. Date: Mon, 01 Feb 2021 12:24:11 +0000 User-Agent: Fakemail v42.6.9 # This is a fake control message. # # The action: # bug archived. thanks # This fakemail brought to you by your local debbugs # administrator