-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathwofi.nix
More file actions
62 lines (55 loc) 路 1.53 KB
/
Copy pathwofi.nix
File metadata and controls
62 lines (55 loc) 路 1.53 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
51
52
53
54
55
56
57
58
59
60
61
62
{ theme, ... }:
{
programs.wofi = {
enable = true;
# Minimal custom styling - using official Catppuccin Mocha colors
style = ''
window {
background-color: transparent;
border: 2px solid #cba6f7; /* Catppuccin Mocha mauve */
border-radius: 10px;
font-family: "JetBrainsMono Nerd Font";
}
#input {
background-color: #313244; /* Catppuccin Mocha surface0 */
color: #cdd6f4; /* Catppuccin Mocha text */
border: none;
border-radius: 0px;
margin: 5px;
padding: 5px;
}
#inner-box {
color: #cdd6f4; /* Catppuccin Mocha text */
background-color: #1e1e2e; /* Catppuccin Mocha base */
margin: 5px;
border-radius: 5px;
}
#outer-box {
margin: 0px;
background-color: #1e1e2e; /* Catppuccin Mocha base */
border-radius: 10px;
}
#scroll {
background-color: #1e1e2e; /* Catppuccin Mocha base */
margin: 5px;
padding: 5px;
}
#entry {
color: #cdd6f4; /* Catppuccin Mocha text */
background-color: #313244; /* Catppuccin Mocha surface0 */
padding: 10px;
}
#entry:selected {
background-color: #cba6f7; /* Catppuccin Mocha mauve */
color: #1e1e2e; /* Catppuccin Mocha base */
}
'';
settings = {
show = "drun"; # Application launcher mode
width = "40%";
lines = 5;
prompt = "Launch:";
layer = "overlay"; # Appears above other windows
};
};
}