Walker (GTK4 + Elephant backend) replaces rofi-lbonn-wayland-git as the central launcher and menu framework. Native Walker providers replace 5 custom rofi scripts: - App launcher (desktopapplications provider) - Clipboard (clipboard provider, replaces cliphist frontend) - Bluetooth (bluetooth provider, replaces bluetoothctl script) - Volume/audio (wireplumber provider) - Sink switcher (wireplumber provider) 3 scripts ported to Walker dmenu mode: - moonarch-vpn (nmcli) - moonarch-cpugov (auto-cpufreq) - moonarch-sink-switcher (pactl) Settings menu (moonarch-setmen) removed — apps are findable via Walker app search directly. Walker theme (gtk-inherit) inherits all colors from the active GTK4 theme instead of hardcoding Catppuccin values. Walker and Elephant run as systemd user services for instant startup. Also standardizes GTK theme to Colloid-Grey-Dark-Catppuccin across all config files (was inconsistent between gsettings and file configs). Old rofi configs preserved in legacy/rofi/ for reference.
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";
|
|
}
|