~ruther/guix-config

ref: d74e115ab478b9147d0f6b22964daac863fb6fcc guix-config/home/dwl/wm.scm -rw-r--r-- 1.8 KiB
d74e115a — Rutherther feat: dwl xwayland, waybar config 7 months ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
(define-module (home dwl wm)
  #:use-module (gnu packages wm)
  #:use-module (gnu packages xorg)

  #:use-module (ruther packages wayland)

  #:use-module (guix packages)
  #:use-module (guix gexp)
  #:use-module (guix utils)
  #:use-module (guix download)
  #:use-module (guix git-download))

(define-public waybar-mine
  (package
   (inherit waybar)
   (name "waybar-mine")
   (source
    (origin
     (inherit (package-source waybar))
     (sha256
      (base32 "0liiyz6212pmyhpsrb6773qf5b9b4kb76nggizygr9abfidbg5gw"))
     (patches
      (list (local-file "dwl-ipc-waybar.patch")))))))

(define-public (make-dwl-xwayland dwl)
  (package/inherit dwl
    (inputs
     (modify-inputs (package-inputs dwl)
       (append xcb-util-wm libx11 xorg-server-xwayland)))
    (arguments (substitute-keyword-arguments (package-arguments dwl)
                 ((#:make-flags original-flags)
                  #~(append '("XWAYLAND = -DXWAYLAND"
                              "XLIBS = xcb xcb-icccm")
                            #$original-flags))))))

(define-public dwl-mine
  (let ((base (make-dwl-xwayland dwl-0.7)))
    (package
      (inherit base)
      (name "dwl-mine")
      (source
       (origin
         (method git-fetch)
         (uri (git-reference
               (url "https://github.com/Rutherther/dwl")
               (commit "a8e46f319f574876ce697a7097eb47a2080b1a87")))
         (sha256
          (base32 "1jkyqwnc6x48bcjcyn1ha69vwql18ib1w47jx6bxz7wg7bvidm01"))))
      (arguments (substitute-keyword-arguments (package-arguments base)
                   ((#:phases original-phases)
                    #~(modify-phases #$original-phases
                        (add-after 'unpack 'add-config
                          (lambda _
                            (copy-file #$(local-file "config.h") "config.h"))))))))))

;; TODO wrapping with needed deps
Do not follow this link