dotfiles/.config/rofi/themes/window.rasi

130 lines
2.3 KiB
Plaintext
Raw Normal View History

2020-07-04 22:48:27 +00:00
configuration {
font: "NovaMono Nerd Font 14";
show-icons: true;
icon-theme: "Papirus";
drun-display-format: "{icon} {name}";
threads: 0;
scroll-method: 0;
disable-history: true;
fullscreen: false;
hide-scrollbar: true;
sidebar-mode: false;
}
@import "colors.rasi"
window {
transparency: "real";
background-color: @background;
text-color: @foreground;
height: 50%;
width: 55%;
location: center;
anchor: center;
x-offset: 0;
y-offset: 0;
}
prompt {
enabled: true;
padding: 0% 0.5% 0% 0%;
background-color: @background-light;
text-color: @foreground;
font: "NovaMono Nerd Font 16";
}
inputbar {
background-color: rgba(0, 0, 0, 0);
text-color: @foreground;
expand: false;
margin: 1% 0% 0% 0%;
padding: 10px;
position: center;
}
entry {
background-color: @background-light;
text-color: @foreground;
placeholder-color: @foreground;
expand: true;
horizontal-align: 0;
placeholder: "Search Applications";
padding: 10px;
blink: true;
}
case-indicator {
background-color: @background;
text-color: @foreground;
spacing: 0;
}
listview {
background-color: @background-light;
columns: 1;
spacing: 1%;
cycle: false;
dynamic: true;
layout: vertical;
}
mainbox {
background-color: @background;
children: [ inputbar, listview];
spacing: 1%;
padding: 1% 1% 1% 1%;
}
element {
background-color: @background;
text-color: @foreground;
orientation: vertical;
border-radius: 7px;
padding: 1% 0% 1% 0%;
}
element-icon {
size: 34px;
border: 0px;
horizontal-align: 0.05;
}
element-text {
expand: true;
horizontal-align: 0.05;
vertical-align: 0.5;
margin: 2px;
}
element normal.urgent,
element alternate.urgent {
background-color: @on;
text-color: @foreground;
border-radius: 1%;
}
element normal.active,
element alternate.active {
background-color: @on;
text-color: @foreground;
border-radius: 3px;
}
element selected {
background-color: @accent;
text-color: @foreground;
border-radius: 3px;
}
element selected.urgent {
background-color: @on;
text-color: @foreground;
}
element selected.active {
background-color: @background-alt;
color: @foreground;
}