-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlist.rasi
More file actions
executable file
·133 lines (124 loc) · 4.12 KB
/
Copy pathlist.rasi
File metadata and controls
executable file
·133 lines (124 loc) · 4.12 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
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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
/*****----- Configuration -----*****/
configuration {
show-icons: true;
hover-select: true;
me-select-entry: "";
me-accept-entry: "MousePrimary";
}
/*****----- Global Properties -----*****/
@import "./shared.rasi"
/*****----- Main Window -----*****/
window {
transparency: "real";
location: northeast;
y-offset: 5px;
x-offset: -5px;
anchor: center;
fullscreen: false;
width: 400px;
enabled: true;
border: 1px;
border-color: @border;
border-radius: 14px;
cursor: "default";
background-color: @background;
}
/*****----- Main Box -----*****/
mainbox {
enabled: true;
spacing: 0px;
background-color: transparent;
orientation: vertical;
children: [ "inputbar", "listview" ];
}
/*****----- Inputbar -----*****/
inputbar {
enabled: true;
spacing: 0px;
padding: 15px 15px 0px 15px;
background-color: transparent;
text-color: @foreground;
orientation: horizontal;
children: [ "textbox-prompt-colon", "dummy", "entry" ];
}
dummy {
background-color: transparent;
}
entry {
enabled: true;
expand: false;
width: 312px;
padding: 15px;
border-radius: 8px;
background-color: @background-alt;
text-color: inherit;
cursor: text;
placeholder: " Search...";
vertical-align: 0.5;
horizontal-align: 0;
placeholder-color: inherit;
}
textbox-prompt-colon {
font: "Font Awesome 5 Free 14";
enabled: true;
expand: false;
str: " ";
vertical-align: 0.5;
horizontal-align: 0.5;
padding: 14px;
border-radius: 8px;
background-color: @active;
text-color: @background;
}
/*****----- Listview -----*****/
listview {
enabled: true;
columns: 1;
lines: 8;
cycle: false;
dynamic: false;
scrollbar: true;
layout: vertical;
reverse: false;
fixed-height: true;
fixed-columns: true;
spacing: 0px;
margin: 15px;
border-radius: 8px;
background-color: @background-alt;
text-color: @foreground;
cursor: "default";
}
scrollbar {
handle-width: 3px ;
margin: 0px 0px 0px 2px;
handle-color: @foreground;
background-color: @background-alt;
}
/*****----- Elements -----*****/
element {
enabled: true;
spacing: 0px;
padding: 5px;
border-radius: 0px;
background-color: transparent;
text-color: @foreground;
cursor: pointer;
}
element.selected {
background-color: @hover;
text-color: @foreground;
}
element-icon {
size: 30px;
background-color: transparent;
text-color: @foreground;
}
element-text {
padding: 0px;
background-color: transparent;
text-color: inherit;
cursor: inherit;
vertical-align: 0.5;
horizontal-align: 0;
}