Moved rofi to top of screen, changed height/width values, modified color scheme.
This commit is contained in:
parent
b6f5082a99
commit
ac441a8e15
1 changed files with 23 additions and 16 deletions
39
config.rasi
39
config.rasi
|
@ -9,11 +9,14 @@ configuration {
|
||||||
}
|
}
|
||||||
|
|
||||||
* {
|
* {
|
||||||
bg: #142D4C;
|
transparent: #00000000;
|
||||||
bg-alt: #000;
|
default-background-color: #24242480;
|
||||||
fg: #D8DEE9;
|
selection-background-color: #12121280;
|
||||||
fg-alt: #FFF;
|
prompt-background-color: #42424280;
|
||||||
background-color: #142D4C55;
|
default-font-color: #52b3eb;
|
||||||
|
selection-font-color: #ffd1fe;
|
||||||
|
prompt-font-color: #cce1ff;
|
||||||
|
background-color: @default-background-color;
|
||||||
border: 0;
|
border: 0;
|
||||||
padding: 0;
|
padding: 0;
|
||||||
margin: 0;
|
margin: 0;
|
||||||
|
@ -21,11 +24,11 @@ configuration {
|
||||||
}
|
}
|
||||||
|
|
||||||
window {
|
window {
|
||||||
height: 601px;
|
height: 25%;
|
||||||
width: 400px;
|
width: 35%;
|
||||||
location: southwest;
|
location: north;
|
||||||
anchor: southwest;
|
anchor: north;
|
||||||
y-offset: -28;
|
y-offset: 0;
|
||||||
transparency: "real";
|
transparency: "real";
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -41,27 +44,31 @@ listview {
|
||||||
element {
|
element {
|
||||||
orientation: vertical;
|
orientation: vertical;
|
||||||
padding: 12 12 12 8;
|
padding: 12 12 12 8;
|
||||||
text-color: @fg;
|
text-color: @default-font-color;
|
||||||
|
background-color: @transparent;
|
||||||
}
|
}
|
||||||
|
|
||||||
element selected {
|
element selected {
|
||||||
background-color: @bg;
|
background-color: @selection-background-color;
|
||||||
text-color: @fg-alt;
|
text-color: @selection-font-color;
|
||||||
}
|
}
|
||||||
|
|
||||||
inputbar {
|
inputbar {
|
||||||
background-color: @background;
|
background-color: @prompt-background-color;
|
||||||
|
text-color: @prompt-font-color;
|
||||||
children: [prompt, entry];
|
children: [prompt, entry];
|
||||||
}
|
}
|
||||||
|
|
||||||
prompt {
|
prompt {
|
||||||
enabled: true;
|
enabled: true;
|
||||||
text-color: @fg;
|
background-color: @transparent;
|
||||||
|
text-color: @prompt-font-color;
|
||||||
padding: 12 0 0 8;
|
padding: 12 0 0 8;
|
||||||
font: "DejaVu Sans Mono for Powerline 11";
|
font: "DejaVu Sans Mono for Powerline 11";
|
||||||
}
|
}
|
||||||
|
|
||||||
entry {
|
entry {
|
||||||
text-color: @fg;
|
background-color: @transparent;
|
||||||
|
text-color: @prompt-font-color;
|
||||||
padding: 12;
|
padding: 12;
|
||||||
}
|
}
|
||||||
|
|
Reference in a new issue