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

@@ -0,0 +1,10 @@
* {
background: #eeeeee;
background-alt: #eeeeee;
foreground: #000000;
accent: #A6CC70;
border: #eeeeee;
border-alt: #eeeeee;
selected: @accent;
urgent: #ff3333;
}

View File

@@ -0,0 +1,32 @@
/* Confirm Dialog */
colors {
background: #425775ff;
background-alt: #475C7Bff;
foreground: #ffffffcc;
border: #FDBB6Dff;
border-alt: #DA717Fff;
selected: #685E79ff;
urgent: #DA4453FF;
}
* {
background-color: @background;
text-color: @foreground;
font: "JuliaMono 11";
}
window {
width: 225px;
padding: 25px;
border: 1px;
border-radius: 0px;
border-color: @border;
location: center;
y-offset: -2em;
}
entry {
expand: true;
text-color: @border;
}

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;
}

View File

@@ -0,0 +1,32 @@
/* Message Dialog */
colors {
background: #425775ff;
background-alt: #475C7Bff;
foreground: #ffffffcc;
border: #FDBB6Dff;
border-alt: #DA717Fff;
selected: #685E79ff;
urgent: #DA4453FF;
}
* {
background-color: @background;
text-color: @foreground;
font: "FantasqueSansMono Nerd Font 12";
}
window {
width: 360px;
padding: 25px;
border: 1px;
border-radius: 0px;
border-color: @border;
location: center;
y-offset: -2em;
}
entry {
expand: true;
text-color: @border;
}

View File

@@ -0,0 +1,112 @@
configuration {
font: "JuliaMono 18";
show-icons: false;
icon-theme: "Papirus";
drun-display-format: "{name}";
disable-history: false;
sidebar-mode: false;
}
@import "~/.config/rofi/colors.rasi"
window {
transparency: "real";
background-color: @background;
text-color: @foreground;
border-radius: 0px;
height: 28%;
width: 15%;
location: center;
x-offset: 0;
y-offset: 0;
}
prompt {
enabled: true;
padding: 0.5% 0.5% 0.5% 0%;
background-color: @background-alt;
text-color: @foreground;
}
textbox-prompt-colon {
expand: false;
str: "Powermenu";
background-color: @background-alt;
text-color: @foreground;
padding: 0.5% 0.5% 0.5% 0%;
}
inputbar {
children: [ textbox-prompt-colon, prompt ];
background-color: @background-alt;
text-color: @foreground;
expand: false;
border: 0% 0% 0% 0.2%;
border-radius: 0% 0% 0% 0%;
border-color: @border;
padding: 0.5%;
position: center;
}
listview {
background-color: @background;
margin: 0% 0% 0% 0%;
spacing: 1%;
cycle: true;
dynamic: true;
layout: vertical;
}
mainbox {
background-color: @background;
children: [ inputbar, listview ];
padding: 1% 1% 1% 1%;
}
element {
background-color: @background-alt;
text-color: @foreground;
orientation: vertical;
border-radius: 0%;
}
element-text {
background-color: #00000000;
text-color: inherit;
expand: true;
horizontal-align: 0.5;
vertical-align: 0.5;
margin: 1% 1% 1% 1%;
}
element normal.urgent,
element alternate.urgent {
background-color: @urgent;
text-color: @foreground;
border-radius: 0.2%;
}
element normal.active,
element alternate.active {
background-color: @background-alt;
text-color: @foreground;
}
element selected {
background-color: @selected;
text-color: @foreground;
border: 0% 0% 0% 0.2%;
border-radius: 0%;
border-color: @border;
}
element selected.urgent {
background-color: @urgent;
text-color: @foreground;
}
element selected.active {
background-color: @background-alt;
color: @foreground;
}