mirror of
https://github.com/ksyasuda/rice.git
synced 2024-10-28 09:04:10 -07:00
124 lines
3.1 KiB
Plaintext
124 lines
3.1 KiB
Plaintext
|
/*
|
||
|
*
|
||
|
* Author : Aditya Shakya
|
||
|
* Mail : adi1090x@gmail.com
|
||
|
* Github : @adi1090x
|
||
|
* Twitter : @adi1090x
|
||
|
*
|
||
|
*/
|
||
|
|
||
|
configuration {
|
||
|
font: "Terminus 9";
|
||
|
show-icons: true;
|
||
|
icon-theme: "Papirus";
|
||
|
display-drun: "";
|
||
|
drun-display-format: "{name}";
|
||
|
disable-history: false;
|
||
|
fullscreen: false;
|
||
|
hide-scrollbar: true;
|
||
|
sidebar-mode: false;
|
||
|
}
|
||
|
|
||
|
@import "colors.rasi"
|
||
|
|
||
|
window {
|
||
|
transparency: "real";
|
||
|
background-color: @bg;
|
||
|
text-color: @fg;
|
||
|
border: 0px 0px 0px 0px;
|
||
|
border-color: @ac;
|
||
|
border-radius: 0px;
|
||
|
width: 300px;
|
||
|
location: center;
|
||
|
x-offset: 0;
|
||
|
y-offset: 0;
|
||
|
}
|
||
|
|
||
|
prompt {
|
||
|
enabled: true;
|
||
|
padding: 6px 7px 4px 7px;
|
||
|
background-color: @bga;
|
||
|
text-color: @fg;
|
||
|
}
|
||
|
|
||
|
textbox-prompt-colon {
|
||
|
padding: 6px 7px 4px 7px;
|
||
|
background-color: @ac;
|
||
|
text-color: @fg;
|
||
|
expand: false;
|
||
|
str: "";
|
||
|
font: "feather 8";
|
||
|
}
|
||
|
|
||
|
entry {
|
||
|
background-color: @al;
|
||
|
text-color: @fg;
|
||
|
placeholder-color: @fg;
|
||
|
expand: true;
|
||
|
horizontal-align: 0;
|
||
|
placeholder: "Search...";
|
||
|
padding: 6px;
|
||
|
blink: true;
|
||
|
}
|
||
|
|
||
|
inputbar {
|
||
|
children: [ textbox-prompt-colon, prompt ];
|
||
|
background-color: @bga;
|
||
|
text-color: @fg;
|
||
|
expand: false;
|
||
|
border: 0px;
|
||
|
border-radius: 0px;
|
||
|
border-color: @ac;
|
||
|
margin: 0px;
|
||
|
padding: 0px;
|
||
|
}
|
||
|
|
||
|
listview {
|
||
|
background-color: @al;
|
||
|
padding: 0px;
|
||
|
columns: 1;
|
||
|
lines: 5;
|
||
|
spacing: 6px;
|
||
|
cycle: true;
|
||
|
dynamic: true;
|
||
|
layout: vertical;
|
||
|
}
|
||
|
|
||
|
mainbox {
|
||
|
background-color: @al;
|
||
|
border: 0px;
|
||
|
border-radius: 0px;
|
||
|
border-color: @ac;
|
||
|
children: [ inputbar, listview ];
|
||
|
spacing: 6px;
|
||
|
padding: 6px;
|
||
|
}
|
||
|
|
||
|
element {
|
||
|
background-color: @al;
|
||
|
text-color: @fga;
|
||
|
orientation: horizontal;
|
||
|
border-radius: 0px;
|
||
|
padding: 3px 3px 3px -23px;
|
||
|
}
|
||
|
|
||
|
element-icon {
|
||
|
size: 24px;
|
||
|
border: 0px;
|
||
|
}
|
||
|
|
||
|
element-text {
|
||
|
expand: true;
|
||
|
horizontal-align: 0;
|
||
|
vertical-align: 0.5;
|
||
|
margin: 0px 2.5px 0px 2.5px;
|
||
|
}
|
||
|
|
||
|
element selected {
|
||
|
background-color: @se;
|
||
|
text-color: @fga;
|
||
|
border: 0px 0px 0px 0px;
|
||
|
border-radius: 0px;
|
||
|
border-color: @ac;
|
||
|
}
|