home/.config/rofi/config.rasi

109 lines
1.7 KiB
Plaintext
Raw Normal View History

2020-09-27 10:49:53 -05:00
/*
* config.rasi
* Copyright (C) 2020 Vintage Salt <rehashedsalt@cock.li>
*
* Distributed under terms of the MIT License
2020-05-31 21:08:15 -05:00
*
2020-09-27 10:49:53 -05:00
* See rofi-theme(5) for documentation
2018-05-18 01:37:53 -05:00
*/
configuration {
2020-09-27 10:49:53 -05:00
matching: "normal";
2018-05-18 01:37:53 -05:00
show-icons: true;
icon-theme: "Papirus-Dark";
2018-05-18 01:37:53 -05:00
modi: "drun,ssh,window";
2020-09-27 10:49:53 -05:00
height: 60%;
width: 50%;
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;
2020-11-02 19:09:46 -06:00
font: "IBM Plex Sans 10";
2018-05-18 01:37:53 -05:00
}
#window {
2020-09-27 10:49:53 -05:00
location: center;
anchor: center;
2020-05-31 21:08:15 -05:00
border-color: @background-alt;
background-color: @background;
border: 4px;
2020-09-27 10:49:53 -05:00
border-radius: 16px;
2020-05-31 21:08:15 -05:00
}
#inputbar {
2020-09-27 10:49:53 -05:00
padding: 2em;
2020-05-31 21:08:15 -05:00
}
#case-indicator {
text-color: @foreground-alt;
}
#prompt {
2020-11-02 19:09:46 -06:00
font: "IBM Plex Sans Bold 16";
2020-09-27 16:04:34 -05:00
padding: 0 1em 0 0;
2020-05-31 21:08:15 -05:00
}
2020-09-27 10:49:53 -05:00
#entry {
2020-11-02 19:09:46 -06:00
font: "IBM Plex Sans 16";
2020-09-27 10:49:53 -05:00
}
2020-05-31 21:08:15 -05:00
#message {
padding: 4px;
}
#textbox {
padding: 4px 12px 4px 12px;
font-color: @foreground-alt;
}
#listview {
2020-12-06 10:37:17 -06:00
columns: 6;
lines: 4;
2020-09-27 10:49:53 -05:00
padding: 1em;
2020-05-31 21:08:15 -05:00
}
2020-09-27 10:49:53 -05:00
#element-icon {
2020-12-06 10:39:15 -06:00
size: 64px;
2020-09-27 10:49:53 -05:00
}
2020-05-31 21:08:15 -05:00
#element {
2020-09-27 10:49:53 -05:00
orientation: vertical;
2020-12-06 10:39:15 -06:00
padding: 1em;
2020-09-27 10:49:53 -05:00
border-radius: 8px;
2020-05-31 21:08:15 -05:00
}
#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
2020-09-27 10:49:53 -05:00
*/