all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: jonscoresby--- via Guix-patches via <guix-patches@gnu.org>
To: "57406@debbugs.gnu.org" <57406@debbugs.gnu.org>
Subject: [bug#57406] Format Fix
Date: Fri, 26 Aug 2022 09:28:20 -0600 (MDT)	[thread overview]
Message-ID: <428869422.841450.1661527700384@office.mailbox.org> (raw)
In-Reply-To: <1116003924.687612.1661428102310@office.mailbox.org>

I realized my email client messed up the formatting. Here is the formatted patch.

---
 gnu/packages/wm.scm | 11 ++++++++++-
 1 file changed, 10 insertions(+), 1 deletion(-)

diff --git a/gnu/packages/wm.scm b/gnu/packages/wm.scm
index 7ea6840689..5084d194a6 100644
--- a/gnu/packages/wm.scm
+++ b/gnu/packages/wm.scm
@@ -579,7 +579,16 @@ (define-public qtile
                   (assoc-ref inputs "pango") "/lib/libpango-1.0.so.0\")\n"))
                 (("^pangocairo = ffi.dlopen.*")
                  (string-append "pangocairo = ffi.dlopen(\""
-                  (assoc-ref inputs "pango") "/lib/libpangocairo-1.0.so.0\")\n"))))))))
+                  (assoc-ref inputs "pango") "/lib/libpangocairo-1.0.so.0\")\n")))))
+       (add-after 'install 'install-xsession
+           (lambda* (#:key outputs #:allow-other-keys)
+             (let* ((out (assoc-ref outputs "out"))
+                    (xsessions (string-append out "/share/xsessions"))
+                    (qtile (string-append out "/bin/qtile start")))
+               (mkdir-p xsessions)
+               (copy-file "resources/qtile.desktop" (string-append xsessions "/qtile.desktop"))
+               (substitute* (string-append xsessions "/qtile.desktop")
+                 (("qtile start") qtile))))))))
     (inputs
       (list glib pango pulseaudio))
     (propagated-inputs

base-commit: 80baa8f87aa69151dffe04fb432a37c91d4dd242
-- 
2.37.2




  reply	other threads:[~2022-08-26 15:31 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-08-25 11:48 [bug#57406] [PATCH] qtile desktop file install jonscoresby--- via Guix-patches via
2022-08-26 15:28 ` jonscoresby--- via Guix-patches via [this message]
2022-08-27 21:47   ` bug#57406: Format Fix Marius Bakke

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=428869422.841450.1661527700384@office.mailbox.org \
    --to=guix-patches@gnu.org \
    --cc=57406@debbugs.gnu.org \
    --cc=jonscoresby@mailbox.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this external index

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

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.