- GTK-Style-Script und Template-System entfernt (Catppuccin fest) - 15 tote/inkompatible Scripts gelöscht (Hyprland, X11, Duplikate) - Rasi-Themes von Einzelordnern in themes/ konsolidiert - Waybar: Timezone fix, BAT0, JSON-Struktur, Icons restored - Waybar: GTK-Menu durch wlogout on-click ersetzt - Alle Script-Pfade auf /etc/xdg/rofi/themes/ aktualisiert - moonarch-session als Rofi-basierte Übergangslösung hinzugefügt - moonarch-dnd: broken pipe bei Waybar-Restart behoben - Style.css vom System übernommen
86 lines
2.5 KiB
Plaintext
86 lines
2.5 KiB
Plaintext
/**
|
|
* @author Moonarch
|
|
* @description Rofi session menu — horizontal icon layout
|
|
**/
|
|
|
|
@import "../config.rasi"
|
|
@import "../colors.rasi"
|
|
|
|
window {
|
|
width: 674px;
|
|
location: center;
|
|
anchor: center;
|
|
border-radius: var(border-radius);
|
|
border: var(frame-border);
|
|
border-color: var(borders);
|
|
background-color: @theme-bg-color-shade-1;
|
|
}
|
|
|
|
mainbox {
|
|
enabled: true;
|
|
spacing: 15px;
|
|
padding: 30px;
|
|
background-color: transparent;
|
|
children: [ "message", "listview" ];
|
|
}
|
|
|
|
message {
|
|
enabled: true;
|
|
padding: 0;
|
|
background-color: transparent;
|
|
}
|
|
|
|
textbox {
|
|
background-color: transparent;
|
|
text-color: var(theme-text-color);
|
|
horizontal-align: 0.5;
|
|
font: "UbuntuSans Nerd Font 11";
|
|
markup: true;
|
|
}
|
|
|
|
listview {
|
|
enabled: true;
|
|
columns: 6;
|
|
lines: 1;
|
|
cycle: true;
|
|
dynamic: false;
|
|
scrollbar: false;
|
|
layout: vertical;
|
|
fixed-height: true;
|
|
fixed-columns: true;
|
|
spacing: 10px;
|
|
background-color: transparent;
|
|
}
|
|
|
|
element {
|
|
enabled: true;
|
|
padding: 15px;
|
|
border-radius: var(border-radius);
|
|
background-color: transparent;
|
|
text-color: var(theme-text-color);
|
|
cursor: pointer;
|
|
orientation: vertical;
|
|
children: [ "element-icon" ];
|
|
}
|
|
|
|
element selected.normal {
|
|
background-color: var(theme-selected-fg-color);
|
|
text-color: var(theme-selected-bg-color);
|
|
}
|
|
|
|
element-icon {
|
|
background-color: transparent;
|
|
size: 64px;
|
|
cursor: inherit;
|
|
horizontal-align: 0.5;
|
|
}
|
|
|
|
element-text {
|
|
background-color: transparent;
|
|
text-color: inherit;
|
|
cursor: inherit;
|
|
horizontal-align: 0.5;
|
|
vertical-align: 0.5;
|
|
font: "UbuntuSans Nerd Font 9";
|
|
}
|