mirror of
https://github.com/Snigdha-OS/snigdhaos-hyprland-config.git
synced 2025-09-23 04:55:04 +02:00
75 lines
2.0 KiB
Plaintext
75 lines
2.0 KiB
Plaintext
// Config //
|
|
configuration {
|
|
modi: "drun";
|
|
show-icons: true;
|
|
}
|
|
|
|
@theme "~/.config/rofi/theme.rasi"
|
|
|
|
|
|
// Main //
|
|
window {
|
|
transparency: "real";
|
|
fullscreen: false;
|
|
enabled: true;
|
|
cursor: "default";
|
|
spacing: 0em;
|
|
padding: 0em;
|
|
background-color: @main-bg;
|
|
}
|
|
mainbox {
|
|
enabled: true;
|
|
spacing: 0em;
|
|
padding: 0em;
|
|
orientation: horizontal;
|
|
children: [ "listbox" ];
|
|
background-color: transparent;
|
|
}
|
|
|
|
|
|
// Lists //
|
|
listbox {
|
|
padding: 0em;
|
|
spacing: 0em;
|
|
orientation: horizontal;
|
|
children: [ "listview" ];
|
|
background-color: transparent;
|
|
}
|
|
listview {
|
|
padding: 2px;
|
|
spacing: 0em;
|
|
enabled: true;
|
|
columns: 1;
|
|
cycle: true;
|
|
dynamic: true;
|
|
scrollbar: false;
|
|
flow: horizontal;
|
|
reverse: false;
|
|
fixed-height: false;
|
|
fixed-columns: false;
|
|
cursor: "default";
|
|
background-color: transparent;
|
|
}
|
|
|
|
|
|
// Elements //
|
|
element {
|
|
orientation: vertical;
|
|
enabled: true;
|
|
spacing: 0em;
|
|
padding: 0em;
|
|
cursor: pointer;
|
|
background-color: transparent;
|
|
}
|
|
element selected.normal {
|
|
background-color: @main-fg;
|
|
}
|
|
element-icon {
|
|
cursor: inherit;
|
|
background-color: transparent;
|
|
}
|
|
element-text {
|
|
enabled: false;
|
|
}
|
|
|