2023-07-18 14:26:03 +08:00
|
|
|
configuration {
|
|
|
|
modes: "windowcd";
|
|
|
|
icon-theme: "Nordzy-cyan-dark";
|
2023-07-20 11:29:34 +08:00
|
|
|
//window-thumbnail: true;
|
|
|
|
window-format: "{c:20}\n<span size='small'>{t:25}</span>";
|
2023-07-18 14:26:03 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
@theme "./colors.rasi"
|
|
|
|
|
|
|
|
|
|
|
|
window {
|
|
|
|
transparency: "real";
|
2023-07-20 11:29:34 +08:00
|
|
|
location: center;
|
|
|
|
width: 1200px;
|
2023-07-18 14:26:03 +08:00
|
|
|
border-radius: 4px;
|
|
|
|
background-color: @bg;
|
|
|
|
}
|
|
|
|
|
|
|
|
mainbox {
|
|
|
|
vertical-align: 0.5;
|
2023-07-20 11:29:34 +08:00
|
|
|
padding: 48px 24px;
|
|
|
|
children: [ listview ];
|
2023-07-18 14:26:03 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
listview {
|
2023-07-20 11:29:34 +08:00
|
|
|
flow: horizontal;
|
|
|
|
fixed-columns: true;
|
|
|
|
columns: 3;
|
|
|
|
lines: 2;
|
2023-07-18 14:26:03 +08:00
|
|
|
cycle: false;
|
|
|
|
background-color: transparent;
|
|
|
|
}
|
|
|
|
|
2023-07-20 11:29:34 +08:00
|
|
|
|
2023-07-18 14:26:03 +08:00
|
|
|
|
|
|
|
element {
|
2023-07-20 11:29:34 +08:00
|
|
|
//orientation: vertical;
|
|
|
|
padding: 32px 6px;
|
|
|
|
margin: 12px 24px;
|
2023-07-18 14:26:03 +08:00
|
|
|
border-radius: 6px;
|
|
|
|
text-color: @blue;
|
2023-07-20 11:29:34 +08:00
|
|
|
background-color: @grey;
|
2023-07-18 14:26:03 +08:00
|
|
|
children: [element-icon, element-text];
|
|
|
|
}
|
|
|
|
|
|
|
|
element-icon {
|
2023-07-20 11:29:34 +08:00
|
|
|
size: 64;
|
|
|
|
padding: 0 10px;
|
2023-07-18 14:26:03 +08:00
|
|
|
background-color: transparent;
|
|
|
|
}
|
|
|
|
|
|
|
|
element-text {
|
|
|
|
padding: 12px 0;
|
2023-07-20 11:29:34 +08:00
|
|
|
font: "Menlo 14";
|
2023-07-18 14:26:03 +08:00
|
|
|
vertical-align: 0.5;
|
|
|
|
text-color: inherit;
|
|
|
|
background-color: transparent;
|
|
|
|
}
|
|
|
|
|
|
|
|
element selected {
|
|
|
|
background-color: @greena;
|
|
|
|
}
|
|
|
|
element-text selected {
|
|
|
|
text-color: #ffffff;
|
|
|
|
}
|