home/.config/rofi/config.rasi

118 lines
1.7 KiB
Plaintext
Raw Normal View History

2020-05-31 21:08:15 -05:00
/* rehashedsalt's Gruvbox rofi theme
* Distributed under the terms of the MIT License
* github.com/rehashedsalt
*
* See rofi-theme(5) for documentation
*
2018-05-18 01:37:53 -05:00
*/
configuration {
matching: "fuzzy";
show-icons: true;
2020-05-31 21:08:15 -05:00
drun-icon-theme: "Breeze-Dark";
2018-05-18 01:37:53 -05:00
modi: "drun,ssh,window";
2020-05-31 21:08:15 -05:00
sidebar-mode: true;
yoffset: -4;
xoffset: 0;
width: 32;
2018-05-18 01:37:53 -05:00
}
* {
2020-05-31 21:08:15 -05:00
background: #232629;
background-alt: #31363b;
foreground: #eff0f1;
foreground-alt: #ed1515;
blue-dark: #1abc9c;
blue: #1d99f3;
yellow: #fdbc4b;
text-color: @foreground;
background-color: @background;
font: "Roboto 10";
2018-05-18 01:37:53 -05:00
}
#window {
location: north;
anchor: north;
2020-05-31 21:08:15 -05:00
border-color: @background-alt;
background-color: @background;
border: 4px;
height: 40%;
width: 520px;
}
#inputbar {
padding: 10px;
border: 0px 0px 4px 0px;
border-color: @background-alt;
}
#case-indicator {
text-color: @foreground-alt;
}
#prompt {
font: "Roboto Bold 10";
padding: 0px 8px 0px 0px;
text-color: @foreground;
}
#message {
padding: 4px;
}
#textbox {
padding: 4px 12px 4px 12px;
font-color: @foreground-alt;
}
#listview {
padding: 4px;
spacing: 0px;
}
#element {
padding: 4px;
}
#element normal active {
text-color: @blue-dark;
}
#element normal urgent {
text-color: @yellow;
}
#element selected normal {
background-color: @blue;
text-color: @background;
}
#element selected active {
background-color: @blue-dark;
text-color: @background;
}
#element selected urgent {
background-color: @yellow;
text-color: @background;
}
#sidebar {
}
#button {
padding: 8px;
}
#button selected {
background-color: @background-alt;
}
/* vim:ft=css
*/
2018-05-18 01:37:53 -05:00