-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathhall.scm
More file actions
50 lines (50 loc) · 1.78 KB
/
Copy pathhall.scm
File metadata and controls
50 lines (50 loc) · 1.78 KB
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
(hall-description
(name "gubar")
(prefix "")
(version "0.1.0")
(author "Trevor Arjeski")
(email "tmarjeski@gmail.com")
(copyright (2025))
(synopsis
"Swaybar generator written in Guile Scheme.")
(description
"A bar generator for sway using the swaybar-protocol, written\nand configured with Guile Scheme. It is similar to a program like i3blocks where\nyou can define your own blocks or use some of the provided blocks, which will\nthen be displayed in the bar.")
(home-page "https://codeberg.org/trevarj/gubar")
(license gpl3+)
(dependencies
(("guile-fibers" (fibers)) ("guile-json" (json))))
(skip ())
(features
((guix #t)
(use-guix-specs-for-dependencies #t)))
(files (libraries
((directory
"gubar"
((directory
"blocks"
((scheme-file "xkb-layout")
(scheme-file "volume-pipewire")
(scheme-file "network-manager-wifi")
(scheme-file "label")
(scheme-file "date-time")
(scheme-file "battery")
(scheme-file "brightness")))
(scheme-file "hconfig")
(scheme-file "main")
(scheme-file "swaybar-protocol")
(scheme-file "gublock")))))
(tests ())
(programs
((directory "scripts" ((in-file "gubar")))))
(documentation
((text-file "COPYING")
(markdown-file "README")
(text-file "NEWS")
(text-file "AUTHORS")
(text-file "ChangeLog")))
(infrastructure
((scheme-file "guix")
(scheme-file "hall")
(autoconf-file "configure")
(automake-file "Makefile")
(in-file "pre-inst-env")))))