44 lines
644 B
Sass
44 lines
644 B
Sass
/*
|
|
# ____ __ _
|
|
# | _ \ ___ / _(_)
|
|
# | |_) / _ \| |_| |
|
|
# | _ < (_) | _| |
|
|
# |_| \_\___/|_| |_|
|
|
#
|
|
# by Stephan Raabe (2023)
|
|
# -----------------------------------------------------
|
|
*/
|
|
|
|
configuration {
|
|
display-drun: "Applications";
|
|
display-window: "Windows";
|
|
drun-display-format: "{name}";
|
|
font: "Fira Sans SemiBold 11";
|
|
modi: "window,run,drun";
|
|
}
|
|
|
|
/* Dark theme. */
|
|
@import "~/.cache/wal/colors-rofi-dark"
|
|
|
|
window {
|
|
width:700px;
|
|
}
|
|
|
|
element {
|
|
padding:6;
|
|
}
|
|
|
|
element-text selected {
|
|
text-color:@background;
|
|
}
|
|
|
|
prompt {
|
|
text-color:#ffffff;
|
|
}
|
|
|
|
entry {
|
|
text-color:#ffffff;
|
|
}
|
|
|
|
/* vim: ft=sass
|