Rofi: Re-rice
This commit is contained in:
parent
a7ca3e9309
commit
f6c4eef37c
@ -1,147 +1,117 @@
|
|||||||
/*
|
/* rehashedsalt's Gruvbox rofi theme
|
||||||
* breeze-dark.rasi
|
* Distributed under the terms of the MIT License
|
||||||
* rofi theme inspired by plasma breeze
|
* github.com/rehashedsalt
|
||||||
* Theme by MonsieurBedard
|
*
|
||||||
* Minor tweaking done by rehashedsalt
|
* See rofi-theme(5) for documentation
|
||||||
|
*
|
||||||
*/
|
*/
|
||||||
|
|
||||||
configuration {
|
configuration {
|
||||||
/* Tweaks */
|
|
||||||
matching: "fuzzy";
|
matching: "fuzzy";
|
||||||
show-icons: true;
|
show-icons: true;
|
||||||
drun-icon-theme: "breeze-dark";
|
drun-icon-theme: "Breeze-Dark";
|
||||||
modi: "drun,ssh,window";
|
modi: "drun,ssh,window";
|
||||||
width: 24;
|
sidebar-mode: true;
|
||||||
|
|
||||||
|
yoffset: -4;
|
||||||
|
xoffset: 0;
|
||||||
|
width: 32;
|
||||||
}
|
}
|
||||||
|
|
||||||
* {
|
* {
|
||||||
/* Base */
|
background: #232629;
|
||||||
default-background: rgba(49, 52, 56, 100%); // <- change this for transparency
|
background-alt: #31363b;
|
||||||
default-foreground: rgba(239, 240, 241, 100%);
|
foreground: #eff0f1;
|
||||||
default-border: rgba(97, 101, 105, 100%);
|
foreground-alt: #ed1515;
|
||||||
alternative-background: rgba(35, 38, 41, 100%);
|
blue-dark: #1abc9c;
|
||||||
invisible: rgba(0, 0, 0, 0%);
|
blue: #1d99f3;
|
||||||
|
yellow: #fdbc4b;
|
||||||
|
|
||||||
/* Colors */
|
text-color: @foreground;
|
||||||
hard-blue: rgba(42, 139, 218, 100%);
|
background-color: @background;
|
||||||
light-blue: rgba(24, 53, 69, 100%);
|
font: "Roboto 10";
|
||||||
|
|
||||||
hard-red: rgba(141, 58, 80, 100%);
|
|
||||||
light-red: rgba(77, 31, 37, 100%);
|
|
||||||
|
|
||||||
hard-green: rgba(39, 161, 69, 100%);
|
|
||||||
light-green: rgba(19, 55, 35, 100%);
|
|
||||||
|
|
||||||
/* Universal */
|
|
||||||
background-color: @invisible;
|
|
||||||
border-color: @default-border;
|
|
||||||
font: "Noto Sans 10";
|
|
||||||
text-color: @default-foreground;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
#window {
|
#window {
|
||||||
background-color: @default-background;
|
|
||||||
border: 0 1 1 1;
|
|
||||||
border-radius: 0 0 3 3;
|
|
||||||
border-color: @default-border;
|
|
||||||
padding: 7;
|
|
||||||
/* Tweaks */
|
|
||||||
location: north;
|
location: north;
|
||||||
anchor: north;
|
anchor: north;
|
||||||
|
|
||||||
|
border-color: @background-alt;
|
||||||
|
background-color: @background;
|
||||||
|
|
||||||
|
border: 4px;
|
||||||
|
height: 40%;
|
||||||
|
width: 520px;
|
||||||
}
|
}
|
||||||
|
|
||||||
#mainbox {
|
#inputbar {
|
||||||
border: 0;
|
padding: 10px;
|
||||||
padding: 0;
|
border: 0px 0px 4px 0px;
|
||||||
}
|
border-color: @background-alt;
|
||||||
|
}
|
||||||
|
|
||||||
#message {
|
#case-indicator {
|
||||||
border: 1;
|
text-color: @foreground-alt;
|
||||||
border-radius: 3;
|
}
|
||||||
padding: 5;
|
|
||||||
background-color: @alternative-background;
|
|
||||||
}
|
|
||||||
|
|
||||||
#textbox {
|
#prompt {
|
||||||
background-color: @entry-background;
|
font: "Roboto Bold 10";
|
||||||
}
|
padding: 0px 8px 0px 0px;
|
||||||
|
text-color: @foreground;
|
||||||
|
}
|
||||||
|
|
||||||
#listview {
|
#message {
|
||||||
fixed-height: 0;
|
padding: 4px;
|
||||||
spacing: 2;
|
}
|
||||||
scrollbar: false;
|
|
||||||
padding: 2 0 0;
|
#textbox {
|
||||||
}
|
padding: 4px 12px 4px 12px;
|
||||||
|
font-color: @foreground-alt;
|
||||||
|
}
|
||||||
|
|
||||||
#element {
|
#listview {
|
||||||
padding: 5;
|
padding: 4px;
|
||||||
border: 1;
|
spacing: 0px;
|
||||||
border-radius: 3;
|
}
|
||||||
border-color: @invisible;
|
|
||||||
}
|
|
||||||
|
|
||||||
#element.normal.normal {
|
#element {
|
||||||
background-color: @invisible;
|
padding: 4px;
|
||||||
}
|
}
|
||||||
|
|
||||||
#element.normal.urgent {
|
#element normal active {
|
||||||
background-color: @light-red;
|
text-color: @blue-dark;
|
||||||
}
|
}
|
||||||
|
|
||||||
#element.normal.active {
|
#element normal urgent {
|
||||||
background-color: @light-green;
|
text-color: @yellow;
|
||||||
}
|
}
|
||||||
|
|
||||||
#element.selected.normal {
|
#element selected normal {
|
||||||
background-color: @light-blue;
|
background-color: @blue;
|
||||||
border-color: @hard-blue;
|
text-color: @background;
|
||||||
}
|
}
|
||||||
|
|
||||||
#element.selected.urgent {
|
#element selected active {
|
||||||
background-color: @light-red;
|
background-color: @blue-dark;
|
||||||
border-color: @hard-red;
|
text-color: @background;
|
||||||
}
|
}
|
||||||
|
|
||||||
#element.selected.active {
|
#element selected urgent {
|
||||||
background-color: @light-green;
|
background-color: @yellow;
|
||||||
border-color: @hard-green;
|
text-color: @background;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#sidebar {
|
||||||
|
}
|
||||||
|
|
||||||
#mode-switcher {
|
#button {
|
||||||
spacing: 0;
|
padding: 8px;
|
||||||
}
|
}
|
||||||
|
|
||||||
#button {
|
#button selected {
|
||||||
border: 0 0 3 0;
|
background-color: @background-alt;
|
||||||
border-color: @invisible;
|
}
|
||||||
padding: 3;
|
|
||||||
}
|
|
||||||
|
|
||||||
#button.selected {
|
/* vim:ft=css
|
||||||
border-color: @hard-blue;
|
*/
|
||||||
}
|
|
||||||
|
|
||||||
#inputbar {
|
|
||||||
spacing: 0;
|
|
||||||
padding: 1;
|
|
||||||
}
|
|
||||||
|
|
||||||
#case-indicator {
|
|
||||||
spacing: 0;
|
|
||||||
padding: 3px;
|
|
||||||
background-color: @alternative-background;
|
|
||||||
border: 1 1 1 0;
|
|
||||||
border-radius: 0 2 2 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
#entry {
|
|
||||||
background-color: @alternative-background;
|
|
||||||
padding: 3px;
|
|
||||||
border: 1 0 1 1;
|
|
||||||
border-radius: 2 0 0 2;
|
|
||||||
}
|
|
||||||
|
|
||||||
#prompt {
|
|
||||||
padding: 3 7 3 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user