This commit is contained in:
Marco Thomas
2022-01-13 23:38:21 +01:00
parent fc02553f69
commit 61628a5400
20 changed files with 504 additions and 148 deletions

View File

@@ -11,23 +11,15 @@ configuration {
}
// blur version
* {
bg: #ffffff;
ac: #A6CC70;
}
@import "~/.config/rofi/colors.rasi"
* {
background-color: rgba(0, 0, 0, 0);
font: "JuliaMono 18";
font: "JuliaMono 18";
}
window {
background-color: @bg;
border: 0;
border-radius: 4px;
background-color: @background;
padding: 30;
width: 30%;
height: 45%;
@@ -41,8 +33,8 @@ mainbox {
}
listview {
columns: 2;
lines: 3;
columns: 3;
lines: 1;
padding: 8;
spacing: 0;
cycle: false;
@@ -58,14 +50,14 @@ element {
}
element selected {
background-color: @ac;
background-color: @accent;
border-color: #ffffff0A;
text-color: #000000;
text-color: @foreground;
transition: 20;
}
element-icon {
size: 100;
size: 4%;
horizontal-align: 0.5;
vertical-align: 0.5;
}
@@ -78,7 +70,6 @@ element-text {
inputbar {
children: [ prompt, entry ];
padding: 4 8 4 8;
background-color: #ffffff00;
}
@@ -89,8 +80,9 @@ prompt {
}
entry {
text-color: @txt;
padding: 8 12 8 12;
font: "JuliaMono 20";
margin: 0% 0% 0% 0%;
placeholder: "Search";
placeholder-color: #444444;
}