-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpower_menu.rasi
98 lines (84 loc) · 2.38 KB
/
power_menu.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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
configuration {
modi: "drun";
font: "YOUR FONT CHOICE HERE 12";
show-icons: true;
icon-theme: "YOUR ICON THEME HERE";
display-drun: "";
drun-display-format: "{name}";
sidebar-mode: false;
}
@theme "/dev/null"
* {
bg: #41577faa;
fg: #d3d5e8;
accent: #687363;
button: #29394d;
background-color: @bg;
text-color: @fg;
}
window {
border-radius: 8px;
width: 50%;
padding: 32px;
}
prompt {
background-color: #00000000;
foreground-color: #00000000;
enabled: false;
padding: 0.5% 32px 0% -0.5%;
}
entry {
placeholder: "Search";
background-color: #00000000;
foreground-color: #00000000;
text-color: #00000000;
placeholder-color: #00000000;
expand: false;
padding: 0% 0% 0% 0%;
}
inputbar {
children: [ prompt, entry ];
background-color: #00000000;
foreground-color: #00000000;
text-color: #00000000;
expand: false;
margin: 0%;
}
listview {
columns: 4;
lines: 1;
cycle: false;
dynamic: true;
layout: vertical;
border-radius: 8px;
margin: 0 0 32 0;
}
mainbox {
children: [ inputbar, listview ];
spacing: 2%;
padding: 1 1 1 1;
border-radius: 8px;
}
element {
orientation: vertical;
padding: 2% 0% 2% 0%;
}
element-icon {
size: 48px;
horizontal-align: 0.5;
}
element-text {
expand: true;
horizontal-align: 0.5;
vertical-align: 0.5;
margin: 0.5% 0.5% -0.5% 0.5%;
position: center;
}
element-text, element-icon {
background-color: inherit;
text-color: inherit;
}
element selected {
background-color: @button;
border-radius: 6px;
}