mirror of
https://github.com/sahinakkaya/dotfiles.git
synced 2024-12-23 15:49:40 +01:00
129 lines
2.3 KiB
Plaintext
129 lines
2.3 KiB
Plaintext
configuration {
|
|
modi: "window,run,drun";
|
|
theme: "clean";
|
|
show-icons: true;
|
|
font: "Hack Nerd Font 11";
|
|
}
|
|
|
|
@import "config.rasi"
|
|
|
|
* {
|
|
selected-background: #d8c45d;
|
|
selected-foreground: black;
|
|
}
|
|
|
|
#window {
|
|
width: 100%;
|
|
height: 100%;
|
|
background-color: rgba(255, 255, 255, 0.1);
|
|
padding: 90px 120px;
|
|
}
|
|
|
|
#mainbox {
|
|
border: 0;
|
|
border-radius: 15;
|
|
padding: 20;
|
|
background-color: @background-solid;
|
|
}
|
|
|
|
#textbox {
|
|
text-color: @foreground;
|
|
}
|
|
|
|
#listview {
|
|
columns: 5;
|
|
spacing: 0px;
|
|
cycle: false;
|
|
dynamic: true;
|
|
layout: vertical;
|
|
background-color: transparent;
|
|
padding: 12px 0px 0px 0px;
|
|
}
|
|
|
|
element {
|
|
margin: 4px;
|
|
padding: 22px 10px 22px 10px;
|
|
border-radius: 16px;
|
|
orientation: vertical;
|
|
}
|
|
|
|
element-icon {
|
|
size: 90px;
|
|
margin: 0 10px 0 0;
|
|
}
|
|
|
|
element-text {
|
|
horizontal-align: 0.5;
|
|
vertical-align: 0.5;
|
|
}
|
|
|
|
#element.normal.normal {
|
|
background-color: transparent;
|
|
text-color: @foreground;
|
|
}
|
|
|
|
#element.selected.normal {
|
|
background-color: @selected-background;
|
|
text-color: @selected-foreground;
|
|
border-color: #d07ef2;
|
|
}
|
|
|
|
#element.alternate.normal {
|
|
background-color: transparent;
|
|
text-color: @foreground;
|
|
}
|
|
|
|
#mode-switcher {
|
|
border: 0px 0px 0px ;
|
|
border-color: @separatorcolor;
|
|
}
|
|
|
|
#button {
|
|
spacing: 0;
|
|
text-color: @foreground;
|
|
}
|
|
|
|
#button.selected {
|
|
background-color: @selected-background;
|
|
text-color: @selected-foreground;
|
|
}
|
|
|
|
#inputbar {
|
|
spacing: 0;
|
|
text-color: @selected-foreground;
|
|
padding: 10px;
|
|
background-color: @selected-background;
|
|
/*rgba(0,0,0,0.5);*/
|
|
border-radius: 10px;
|
|
}
|
|
|
|
#case-indicator {
|
|
spacing: 0;
|
|
text-color: @selected-foreground;
|
|
background-color: rgba(0,0,0,0);
|
|
}
|
|
|
|
#entry {
|
|
spacing: 0;
|
|
text-color: @selected-foreground;
|
|
background-color: rgba(0,0,0,0);
|
|
}
|
|
|
|
#prompt {
|
|
spacing: 0;
|
|
text-color: @selected-foreground;
|
|
background-color: rgba(0,0,0,0);
|
|
}
|
|
|
|
#textbox-prompt-colon {
|
|
expand: false;
|
|
str: ":";
|
|
margin: 0px 0.3em 0em 0em ;
|
|
text-color: @selected-foreground;
|
|
background-color: rgba(0,0,0,0);
|
|
}
|
|
|
|
#inputbar {
|
|
children: [prompt,textbox-prompt-colon,entry,case-indicator];
|
|
}
|