File tree 5 files changed +55
-0
lines changed
5 files changed +55
-0
lines changed Original file line number Diff line number Diff line change 99
99
},
100
100
"version" : " 765eb17d0268bf07c20ca439771153f8bc79444f"
101
101
},
102
+ "dunst" : {
103
+ "cargoLocks" : null ,
104
+ "date" : " 2024-04-07" ,
105
+ "extract" : null ,
106
+ "name" : " dunst" ,
107
+ "passthru" : null ,
108
+ "pinned" : false ,
109
+ "src" : {
110
+ "deepClone" : false ,
111
+ "fetchSubmodules" : false ,
112
+ "leaveDotGit" : false ,
113
+ "name" : null ,
114
+ "owner" : " catppuccin" ,
115
+ "repo" : " dunst" ,
116
+ "rev" : " bfec91a5d0ab02a73a4615243feb5499d376831c" ,
117
+ "sha256" : " sha256-xy99DpBrOKlP7DgKyPgbl4QGC+dnXnvkGlkIG0cmd2A=" ,
118
+ "type" : " github"
119
+ },
120
+ "version" : " bfec91a5d0ab02a73a4615243feb5499d376831c"
121
+ },
102
122
"fish" : {
103
123
"cargoLocks" : null ,
104
124
"date" : " 2023-11-02" ,
Original file line number Diff line number Diff line change 61
61
} ;
62
62
date = "2024-03-23" ;
63
63
} ;
64
+ dunst = {
65
+ pname = "dunst" ;
66
+ version = "bfec91a5d0ab02a73a4615243feb5499d376831c" ;
67
+ src = fetchFromGitHub {
68
+ owner = "catppuccin" ;
69
+ repo = "dunst" ;
70
+ rev = "bfec91a5d0ab02a73a4615243feb5499d376831c" ;
71
+ fetchSubmodules = false ;
72
+ sha256 = "sha256-xy99DpBrOKlP7DgKyPgbl4QGC+dnXnvkGlkIG0cmd2A=" ;
73
+ } ;
74
+ date = "2024-04-07" ;
75
+ } ;
64
76
fish = {
65
77
pname = "fish" ;
66
78
version = "0ce27b518e8ead555dec34dd8be3df5bd75cff8e" ;
Original file line number Diff line number Diff line change
1
+ { config
2
+ , lib
3
+ , sources
4
+ , ...
5
+ } :
6
+ let
7
+ inherit ( lib ) ctp ;
8
+ cfg = config . services . dunst . catppuccin ;
9
+ enable = cfg . enable && config . services . dunst . enable ;
10
+ in
11
+ {
12
+ options . services . dunst . catppuccin =
13
+ lib . ctp . mkCatppuccinOpt "dunst" ;
14
+
15
+ config . services . dunst = lib . mkIf enable {
16
+ settings = lib . ctp . fromINI ( sources . dunst + /themes/${ cfg . flavour } .conf ) ;
17
+ } ;
18
+ }
Original file line number Diff line number Diff line change @@ -18,6 +18,10 @@ fetch.github = "catppuccin/btop"
18
18
src.git = " https://github.com/catppuccin/delta.git"
19
19
fetch.github = " catppuccin/delta"
20
20
21
+ [dunst ]
22
+ src.git = " https://github.com/catppuccin/dunst.git"
23
+ fetch.github = " catppuccin/dunst"
24
+
21
25
[fish ]
22
26
src.git = " https://github.com/catppuccin/fish.git"
23
27
fetch.github = " catppuccin/fish"
Original file line number Diff line number Diff line change 85
85
} ;
86
86
87
87
services = {
88
+ dunst = ctpEnable ;
88
89
mako = ctpEnable ;
89
90
polybar =
90
91
ctpEnable
You can’t perform that action at this time.
0 commit comments