-
Notifications
You must be signed in to change notification settings - Fork 30
/
Copy pathnord.rasi
65 lines (54 loc) · 939 Bytes
/
nord.rasi
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
63
64
65
configuration {
show-icons: true;
font: "SauceCodePro Nerd Font Medium 10";
drun-display-format: "{icon} {name}";
display-run: " ";
display-drun: " ";
display-window: " ";
modi: "window,run,drun";
}
* {
background-color: #2E3440;
bg-alt: #3B4252;
fg: #ECEFF4;
nord-blue-light: #88C0D0;
nord-yellow: #A8D7FE;
border: 0;
lines: 12;
padding: 0;
margin: 0;
spacing: 0;
}
window {
width: 30%;
transparency: "real";
}
mainbox {
children: [inputbar, listview];
}
listview {
columns: 1;
}
element {
padding: 12;
orientation: vertical;
text-color: @fg;
}
element selected {
background-color: @bg-alt;
text-color: @nord-blue-light;
}
inputbar {
background-color: @background;
children: [prompt, entry];
}
prompt {
enabled: true;
font: "SauceCodePro Nerd Font 12";
padding: 12 0 0 12;
text-color: @nord-yellow;
}
entry {
padding: 12;
text-color: @nord-yellow;
}