Files
AstroVim_Config/.config/rofi/notification.rasi
2025-02-07 17:08:39 +07:00

91 lines
2.5 KiB
Plaintext

// Config //
configuration {
modi: "drun";
show-icons: true;
drun-display-format: "{name}";
font: "JetBrainsMono Nerd Font 10";
}
@theme "~/.config/rofi/theme.rasi"
// Main //
window {
enabled: true;
fullscreen: false;
transparency: "real";
cursor: "default";
spacing: 0em;
padding: 0em;
border: 0.3em;
border-radius: 0.5em;
border-color: @main-br;
background-color: @main-bg;
}
mainbox {
enabled: true;
orientation: vertical;
children: [ "frame" ];
background-color: @main-bg;
}
frame {
enabled: true;
orientation: vertical;
children: [ "dummy2" , "listview" , "dummy2" ];
background-color: @main-bg;
}
// Lists //
listview {
enabled: true;
spacing: 0em;
padding: 0.5em;
columns: 1;
lines: 4;
cycle: true;
dynamic: true;
scrollbar: false;
layout: vertical;
reverse: false;
expand: false;
fixed-height: true;
fixed-columns: true;
cursor: "default";
background-color: transparent;
}
dummy2 {
spacing: 0em;
padding: 0em;
background-color: transparent;
}
// Elements //
element {
enabled: true;
spacing: 1em;
padding: 1em;
cursor: pointer;
background-color: transparent;
text-color: @main-fg;
border-radius: 0em;
}
element selected.normal {
background-color: @select-bg;
text-color: @select-fg;
}
element-icon {
enabled: false;
}
element-text {
vertical-align: 0.5;
horizontal-align: 0.5;
cursor: inherit;
background-color: transparent;
text-color: inherit;
}