init
This commit is contained in:
@@ -0,0 +1,8 @@
|
||||
configuration {
|
||||
modi: "window,run,ssh,drun";
|
||||
show-icons: true;
|
||||
display-drun: "Apps:";
|
||||
terminal: "alacritty";
|
||||
}
|
||||
|
||||
@theme "style"
|
||||
@@ -0,0 +1,15 @@
|
||||
* {
|
||||
bg0: #1d1010cc;
|
||||
bg1: #2b1c1c;
|
||||
bg2: #362626;
|
||||
bg3: #a38b8b;
|
||||
fg0: #f8dcdc;
|
||||
fg1: #dbc0c0;
|
||||
fg2: #a38b8b;
|
||||
red: #ffb4ab;
|
||||
green: #ffb3b5;
|
||||
yellow: #ffb78a;
|
||||
blue: #f5b8a7;
|
||||
magenta: #be0034;
|
||||
cyan: #920025;
|
||||
}
|
||||
@@ -0,0 +1,71 @@
|
||||
@import "matugen-colors.rasi"
|
||||
|
||||
* {
|
||||
background-color: transparent;
|
||||
text-color: @fg0;
|
||||
|
||||
font: "JetBrainsMono Nerd Font 12";
|
||||
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
spacing: 0;
|
||||
}
|
||||
|
||||
window {
|
||||
background-color: @bg0;
|
||||
border: 2px;
|
||||
border-color: @magenta;
|
||||
border-radius: 10px;
|
||||
width: 500px;
|
||||
padding: 20px;
|
||||
}
|
||||
|
||||
inputbar {
|
||||
children: [ prompt, entry ];
|
||||
background-color: @bg1;
|
||||
border-radius: 6px;
|
||||
padding: 10px;
|
||||
margin: 0 0 15px 0;
|
||||
}
|
||||
|
||||
prompt {
|
||||
text-color: @magenta;
|
||||
padding: 0 10px 0 0;
|
||||
}
|
||||
|
||||
entry {
|
||||
text-color: @fg0;
|
||||
placeholder: "Suche...";
|
||||
placeholder-color: @fg2;
|
||||
}
|
||||
|
||||
listview {
|
||||
lines: 8;
|
||||
columns: 1;
|
||||
scrollbar: false;
|
||||
spacing: 5px;
|
||||
}
|
||||
|
||||
element {
|
||||
padding: 8px;
|
||||
border-radius: 6px;
|
||||
}
|
||||
|
||||
element normal.normal {
|
||||
background-color: transparent;
|
||||
text-color: @fg0;
|
||||
}
|
||||
|
||||
element selected.normal {
|
||||
background-color: @magenta;
|
||||
text-color: @bg0;
|
||||
}
|
||||
|
||||
element-icon {
|
||||
size: 24px;
|
||||
margin: 0 10px 0 0;
|
||||
}
|
||||
|
||||
element-text {
|
||||
vertical-align: 0.5;
|
||||
}
|
||||
Reference in New Issue
Block a user