2023-07-05 19:21:50 +08:00
|
|
|
configuration {
|
|
|
|
modi: "window,combi,ssh,drun,run";
|
|
|
|
font: "Menlo 12";
|
|
|
|
lines: 10;
|
|
|
|
columns: 2;
|
|
|
|
dpi: 192;
|
|
|
|
drun-icon-theme: "Reversal-green-dark";
|
|
|
|
|
|
|
|
drun {
|
2023-07-11 15:29:36 +08:00
|
|
|
display-name: "";
|
2023-07-05 19:21:50 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
run {
|
|
|
|
display-name: "";
|
|
|
|
}
|
|
|
|
|
|
|
|
window {
|
|
|
|
display-name: "";
|
|
|
|
}
|
|
|
|
|
|
|
|
windowcd {
|
|
|
|
display-name: "";
|
|
|
|
}
|
|
|
|
|
|
|
|
ssh {
|
2023-07-11 15:29:36 +08:00
|
|
|
display-name: "";
|
2023-07-05 19:21:50 +08:00
|
|
|
}
|
|
|
|
|
2023-07-06 19:46:43 +08:00
|
|
|
drun-display-format: "{name}";
|
2023-07-05 19:21:50 +08:00
|
|
|
window-format: "{c} - {t}";
|
|
|
|
|
|
|
|
timeout {
|
|
|
|
delay: 10;
|
|
|
|
action: "kb-cancel";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-07-06 19:46:43 +08:00
|
|
|
@theme "./colors.rasi"
|
|
|
|
|
|
|
|
|
|
|
|
window {
|
|
|
|
transparency: "real";
|
|
|
|
width: 720px;
|
2023-07-09 17:25:05 +08:00
|
|
|
border-radius: 4px;
|
2023-07-06 19:46:43 +08:00
|
|
|
background-color: @bg;
|
|
|
|
}
|
|
|
|
|
|
|
|
mainbox {
|
|
|
|
padding: 24px;
|
|
|
|
children: [inputbar, listview];
|
|
|
|
}
|
|
|
|
|
|
|
|
inputbar {
|
|
|
|
background-color: @grey;
|
|
|
|
border-radius: 6px;
|
|
|
|
margin: 12px 0;
|
|
|
|
children: [prompt, entry];
|
|
|
|
}
|
|
|
|
|
|
|
|
entry {
|
|
|
|
background-color: transparent;
|
|
|
|
padding: 16px 4px;
|
|
|
|
}
|
|
|
|
|
|
|
|
prompt {
|
|
|
|
padding: 16px;
|
2023-07-11 15:29:36 +08:00
|
|
|
vertical-align: 0.5;
|
2023-07-06 19:46:43 +08:00
|
|
|
background-color: transparent;
|
|
|
|
}
|
|
|
|
|
|
|
|
listview {
|
|
|
|
lines: 8;
|
|
|
|
scrollbar: true;
|
|
|
|
cycle: false;
|
|
|
|
background-color: transparent;
|
|
|
|
}
|
|
|
|
|
|
|
|
scrollbar {
|
|
|
|
handle-width: 5px ;
|
|
|
|
handle-color: @blue;
|
|
|
|
background-color: @bg;
|
|
|
|
}
|
|
|
|
|
|
|
|
element {
|
|
|
|
padding: 0 12px;
|
|
|
|
margin: 0 12px 0 0;
|
|
|
|
border-radius: 6px;
|
|
|
|
text-color: @blue;
|
|
|
|
background-color: transparent;
|
|
|
|
children: [element-icon, element-text];
|
|
|
|
}
|
|
|
|
|
|
|
|
element-icon {
|
|
|
|
size: 2ch;
|
|
|
|
padding: 12px 10px;
|
|
|
|
background-color: transparent;
|
|
|
|
}
|
|
|
|
|
|
|
|
element-text {
|
|
|
|
padding: 12px 0;
|
|
|
|
text-color: inherit;
|
|
|
|
background-color: transparent;
|
|
|
|
}
|
|
|
|
|
|
|
|
element selected {
|
|
|
|
background-color: @greena;
|
|
|
|
}
|
|
|
|
element-text selected {
|
|
|
|
text-color: #ffffff;
|
2023-07-09 17:25:05 +08:00
|
|
|
}
|