mirror of
https://github.com/sahinakkaya/dotfiles.git
synced 2024-12-23 15:49:40 +01:00
82 lines
1.3 KiB
Plaintext
82 lines
1.3 KiB
Plaintext
configuration {
|
|
modi: "window,run,drun";
|
|
theme: "clean";
|
|
show-icons: true;
|
|
font: "Hack Nerd Font 10";
|
|
}
|
|
|
|
@import "colors.rasi"
|
|
|
|
* {
|
|
selected-background: #d8c45d;
|
|
selected-foreground: black;
|
|
}
|
|
|
|
#window {
|
|
width: 450px;
|
|
height: 120px;
|
|
background-color: @background-solid;
|
|
padding: 5px;
|
|
}
|
|
|
|
#mainbox {
|
|
border: 0;
|
|
padding: 0;
|
|
children: [listview];
|
|
background-color: @background-solid;
|
|
}
|
|
|
|
#listview {
|
|
columns: 4;
|
|
layout: vertical;
|
|
background-color: transparent;
|
|
}
|
|
|
|
element {
|
|
margin: 8px;
|
|
padding: 10px;
|
|
border-radius: 5px;
|
|
orientation: vertical;
|
|
}
|
|
|
|
element-icon {
|
|
size: 48px;
|
|
margin: 2px;
|
|
}
|
|
|
|
element-text {
|
|
horizontal-align: 0.5;
|
|
vertical-align: 0.5;
|
|
}
|
|
|
|
#element.normal.normal {
|
|
background-color: rgba(0, 0, 0, 0);
|
|
text-color: @foreground;
|
|
}
|
|
|
|
#element.selected.normal {
|
|
background-color: @selected-background;
|
|
text-color: @selected-foreground;
|
|
border-color: #d07ef2;
|
|
}
|
|
|
|
#element.alternate.normal {
|
|
background-color: rgba(0,0,0,0);
|
|
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;
|
|
}
|