Moved rofi to top of screen, changed height/width values, modified color scheme.

This commit is contained in:
Alex Huddleston 2020-05-07 21:09:23 -05:00
parent b6f5082a99
commit ac441a8e15

View file

@ -9,11 +9,14 @@ configuration {
}
* {
bg: #142D4C;
bg-alt: #000;
fg: #D8DEE9;
fg-alt: #FFF;
background-color: #142D4C55;
transparent: #00000000;
default-background-color: #24242480;
selection-background-color: #12121280;
prompt-background-color: #42424280;
default-font-color: #52b3eb;
selection-font-color: #ffd1fe;
prompt-font-color: #cce1ff;
background-color: @default-background-color;
border: 0;
padding: 0;
margin: 0;
@ -21,11 +24,11 @@ configuration {
}
window {
height: 601px;
width: 400px;
location: southwest;
anchor: southwest;
y-offset: -28;
height: 25%;
width: 35%;
location: north;
anchor: north;
y-offset: 0;
transparency: "real";
}
@ -41,27 +44,31 @@ listview {
element {
orientation: vertical;
padding: 12 12 12 8;
text-color: @fg;
text-color: @default-font-color;
background-color: @transparent;
}
element selected {
background-color: @bg;
text-color: @fg-alt;
background-color: @selection-background-color;
text-color: @selection-font-color;
}
inputbar {
background-color: @background;
background-color: @prompt-background-color;
text-color: @prompt-font-color;
children: [prompt, entry];
}
prompt {
enabled: true;
text-color: @fg;
background-color: @transparent;
text-color: @prompt-font-color;
padding: 12 0 0 8;
font: "DejaVu Sans Mono for Powerline 11";
}
entry {
text-color: @fg;
background-color: @transparent;
text-color: @prompt-font-color;
padding: 12;
}