unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
* [bug#44652] [PATCH] gnu: Add vimix-cursor-theme.
@ 2020-11-15  5:37 Zhu Zihao
  2020-11-18  9:30 ` Efraim Flashner
  0 siblings, 1 reply; 2+ messages in thread
From: Zhu Zihao @ 2020-11-15  5:37 UTC (permalink / raw)
  To: 44652


[-- Attachment #1.1: Type: text/plain, Size: 0 bytes --]



[-- Attachment #1.2: signature.asc --]
[-- Type: application/pgp-signature, Size: 515 bytes --]

[-- Attachment #2: 0001-gnu-Add-vimix-cursor-theme.patch --]
[-- Type: text/x-patch, Size: 1985 bytes --]

From e4268e914aa835f4bf61ad57c2023cc7d7553832 Mon Sep 17 00:00:00 2001
From: Zhu Zihao <all_but_last@163.com>
Date: Sun, 15 Nov 2020 13:36:47 +0800
Subject: [PATCH] gnu: Add vimix-cursor-theme.

* gnu/packages/gnome-xyz.scm(vimix-cursor-theme): New variable.
---
 gnu/packages/gnome-xyz.scm | 23 +++++++++++++++++++++++
 1 file changed, 23 insertions(+)

diff --git a/gnu/packages/gnome-xyz.scm b/gnu/packages/gnome-xyz.scm
index 77b4aada6f..0f2a7d2465 100644
--- a/gnu/packages/gnome-xyz.scm
+++ b/gnu/packages/gnome-xyz.scm
@@ -7,6 +7,7 @@
 ;;; Copyright © 2020 Ekaitz Zarraga <ekaitz@elenq.tech>
 ;;; Copyright © 2020 Tobias Geerinckx-Rice <me@tobias.gr>
 ;;; Copyright © 2020 Ryan Prior <rprior@protonmail.com>
+;;; Copyright © 2020 Zhu Zihao <all_but_last@163.com>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -123,6 +124,28 @@ which haven't been updated for some years.  The new app icons are ported from
 the Obsidian icon theme.")
     (license license:gpl3)))
 
+(define-public vimix-cursor-theme
+  (package
+    (name "vimix-cursor-theme")
+    (version "2020-02-24")
+    (source
+     (origin
+       (method git-fetch)
+       (uri (git-reference
+             (url "https://github.com/vinceliuice/Vimix-cursors")
+             (commit version)))
+       (sha256 "0bij0x916lbxph28i3d4hz5l6mzk5fa68mf21jnl7y9rpxx07xsd")))
+    (build-system copy-build-system)
+    (arguments
+     `(#:install-plan
+       '(("dist/" "/share/icons/vimix-cursor/")
+         ("dist-white/" "/share/icons/vimix-white-cursor/"))))
+    (synopsis "Material design inspired cursor theme")
+    (description "Vimix-cursor-theme is a x-cursor theme inspired by Material
+design and based on capitaine-cursors.")
+    (home-page "https://github.com/vinceliuice/Vimix-cursors")
+    (license license:gpl3+)))
+
 (define-public gnome-shell-extension-appindicator
   (package
     (name "gnome-shell-extension-appindicator")
-- 
2.29.2


[-- Attachment #3: Type: text/plain, Size: 71 bytes --]


-- 
Retrieve my PGP public key: https://meta.sr.ht/~citreu.pgp

Zihao

^ permalink raw reply related	[flat|nested] 2+ messages in thread

* [bug#44652] [PATCH] gnu: Add vimix-cursor-theme.
  2020-11-15  5:37 [bug#44652] [PATCH] gnu: Add vimix-cursor-theme Zhu Zihao
@ 2020-11-18  9:30 ` Efraim Flashner
  0 siblings, 0 replies; 2+ messages in thread
From: Efraim Flashner @ 2020-11-18  9:30 UTC (permalink / raw)
  To: Zhu Zihao; +Cc: 44652

[-- Attachment #1: Type: text/plain, Size: 2595 bytes --]

Does it make sense to build the icons ourselves? We can either use
build.sh or re-implement it, it doesn't actually look that bad.

On Sun, Nov 15, 2020 at 01:37:28PM +0800, Zhu Zihao wrote:


> From e4268e914aa835f4bf61ad57c2023cc7d7553832 Mon Sep 17 00:00:00 2001
> From: Zhu Zihao <all_but_last@163.com>
> Date: Sun, 15 Nov 2020 13:36:47 +0800
> Subject: [PATCH] gnu: Add vimix-cursor-theme.
> 
> * gnu/packages/gnome-xyz.scm(vimix-cursor-theme): New variable.
> ---
>  gnu/packages/gnome-xyz.scm | 23 +++++++++++++++++++++++
>  1 file changed, 23 insertions(+)
> 
> diff --git a/gnu/packages/gnome-xyz.scm b/gnu/packages/gnome-xyz.scm
> index 77b4aada6f..0f2a7d2465 100644
> --- a/gnu/packages/gnome-xyz.scm
> +++ b/gnu/packages/gnome-xyz.scm
> @@ -7,6 +7,7 @@
>  ;;; Copyright © 2020 Ekaitz Zarraga <ekaitz@elenq.tech>
>  ;;; Copyright © 2020 Tobias Geerinckx-Rice <me@tobias.gr>
>  ;;; Copyright © 2020 Ryan Prior <rprior@protonmail.com>
> +;;; Copyright © 2020 Zhu Zihao <all_but_last@163.com>
>  ;;;
>  ;;; This file is part of GNU Guix.
>  ;;;
> @@ -123,6 +124,28 @@ which haven't been updated for some years.  The new app icons are ported from
>  the Obsidian icon theme.")
>      (license license:gpl3)))
>  
> +(define-public vimix-cursor-theme
> +  (package
> +    (name "vimix-cursor-theme")
> +    (version "2020-02-24")
> +    (source
> +     (origin
> +       (method git-fetch)
> +       (uri (git-reference
> +             (url "https://github.com/vinceliuice/Vimix-cursors")
> +             (commit version)))
> +       (sha256 "0bij0x916lbxph28i3d4hz5l6mzk5fa68mf21jnl7y9rpxx07xsd")))
> +    (build-system copy-build-system)
> +    (arguments
> +     `(#:install-plan
> +       '(("dist/" "/share/icons/vimix-cursor/")
> +         ("dist-white/" "/share/icons/vimix-white-cursor/"))))
> +    (synopsis "Material design inspired cursor theme")
> +    (description "Vimix-cursor-theme is a x-cursor theme inspired by Material
> +design and based on capitaine-cursors.")
> +    (home-page "https://github.com/vinceliuice/Vimix-cursors")
> +    (license license:gpl3+)))
> +
>  (define-public gnome-shell-extension-appindicator
>    (package
>      (name "gnome-shell-extension-appindicator")
> -- 
> 2.29.2
> 

> 
> -- 
> Retrieve my PGP public key: https://meta.sr.ht/~citreu.pgp
> 
> Zihao


-- 
Efraim Flashner   <efraim@flashner.co.il>   אפרים פלשנר
GPG key = A28B F40C 3E55 1372 662D  14F7 41AA E7DC CA3D 8351
Confidentiality cannot be guaranteed on emails sent or received unencrypted

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 833 bytes --]

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2020-11-18  9:32 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-11-15  5:37 [bug#44652] [PATCH] gnu: Add vimix-cursor-theme Zhu Zihao
2020-11-18  9:30 ` Efraim Flashner

Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/guix.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).