hyprdots/Configs/.config/rofi/styles/style_12.rasi
2024-12-10 23:54:56 +01:00

130 lines
3.9 KiB
Text

// Config //
configuration {
modi: "drun,filebrowser,window,run";
show-icons: true;
display-drun: " ";
display-run: " ";
display-filebrowser: " ";
display-window: " ";
drun-display-format: "{name}";
window-format: "{w}{t}";
font: "JetBrainsMono Nerd Font 10";
icon-theme: "Tela-circle-dracula";
}
@theme "~/.config/rofi/theme.rasi"
// Main //
window {
height: 30em;
width: 60em;
transparency: "real";
fullscreen: false;
enabled: true;
cursor: "default";
spacing: 0em;
padding: 0em;
border-color: transparent;
background-color: transparent;
}
mainbox {
enabled: true;
spacing: 0em;
padding: 0em;
orientation: horizontal;
children: [ "listbox" , "inputbar" ];
background-color: transparent;
}
// Inputs //
inputbar {
enabled: true;
width: 30em;
spacing: 0em;
padding: 0em;
children: [ "entry" ];
expand: false;
background-color: transparent;
background-image: url("~/.cache/hyde/wall.quad", width);
}
entry {
enabled: false;
}
// Lists //
listbox {
spacing: 0em;
padding: 0em;
children: [ "dummy" , "listview" , "dummy" ];
background-color: @main-bg;
expand: false;
width: 27em;
}
listview {
enabled: true;
spacing: 0em;
padding: 1em 2em 1em 2em;
columns: 1;
lines: 8;
cycle: true;
dynamic: true;
scrollbar: false;
layout: vertical;
reverse: false;
expand: false;
fixed-height: true;
fixed-columns: true;
cursor: "default";
background-color: transparent;
text-color: @main-fg;
}
dummy {
background-color: transparent;
expand: true;
}
// Elements //
element {
enabled: true;
spacing: 1em;
padding: 0.5em;
cursor: pointer;
background-color: transparent;
text-color: @main-fg;
}
element selected.normal {
background-color: @select-bg;
text-color: @select-fg;
}
element-icon {
size: 2.2em;
cursor: inherit;
background-color: transparent;
text-color: inherit;
}
element-text {
vertical-align: 0.5;
horizontal-align: 0.0;
cursor: inherit;
background-color: transparent;
text-color: inherit;
}
// Error message //
error-message {
text-color: @main-fg;
background-color: @main-bg;
text-transform: capitalize;
children: [ "textbox" ];
}
textbox {
text-color: inherit;
background-color: inherit;
vertical-align: 0.5;
horizontal-align: 0.5;
}