118 lines
1.6 KiB
Text
118 lines
1.6 KiB
Text
/*
|
|
*
|
|
* Author : Aditya Shakya (adi1090x)
|
|
* Mail : adi1090x@gmail.com
|
|
* Github : @adi1090x
|
|
* Reddit : @adi1090x
|
|
*
|
|
*/
|
|
|
|
configuration {
|
|
drun-display-format: "{icon} {name}";
|
|
display-drun: "Apps";
|
|
show-icons: true;
|
|
icon-theme: "Papirus-Dark";
|
|
location: 2;
|
|
fake-transparency: false;
|
|
hide-scrollbar: true;
|
|
bw: 0;
|
|
fullscreen: true;
|
|
show-icons: true;
|
|
terminal: "termite";
|
|
sidebar-mode: false;
|
|
}
|
|
|
|
// black version
|
|
* {
|
|
bg: #000000;
|
|
ac: #869fa214;
|
|
ac-txt: #869fa2;
|
|
item: #bdc3c3;
|
|
txt: #d1d5da;
|
|
}
|
|
|
|
// white version
|
|
/*
|
|
* {
|
|
bg: #ffffff;
|
|
ac: #e5e5e5;
|
|
ac-txt: #101010;
|
|
item: #454545;
|
|
txt: #252525;
|
|
}
|
|
*/
|
|
|
|
* {
|
|
background-color: rgba(0,0,0,0);
|
|
font: "FantasqueSansMono Nerd Font 12";
|
|
}
|
|
|
|
window {
|
|
transparency: "real";
|
|
fullscreen: true;
|
|
}
|
|
|
|
mainbox {
|
|
children: [ inputbar, listview ];
|
|
margin: 25% 30% 25% 30%;
|
|
background-color: @bg;
|
|
border-radius: 12;
|
|
border: 2;
|
|
border-color: #ffffff0A;
|
|
}
|
|
|
|
listview {
|
|
columns: 2;
|
|
padding: 8;
|
|
spacing: 0;
|
|
}
|
|
|
|
element {
|
|
border: 1;
|
|
text-color: @item;
|
|
orientation: vertical;
|
|
padding: 8 12 8 12;
|
|
border-radius: 6;
|
|
}
|
|
|
|
element selected {
|
|
background-color: @ac;
|
|
border-color: #ffffff0A;
|
|
text-color: @ac-txt;
|
|
transition: 20;
|
|
}
|
|
|
|
element-icon {
|
|
size: 60;
|
|
horizontal-align: 0.5;
|
|
vertical-align: 0.5;
|
|
}
|
|
|
|
element-icon {
|
|
size: 40;
|
|
horizontal-align: 0.5;
|
|
vertical-align: 0.5;
|
|
}
|
|
|
|
element-text {
|
|
horizontal-align: 0.5;
|
|
vertical-align: 0.5;
|
|
text-color: inherit;
|
|
}
|
|
|
|
inputbar {
|
|
children: [entry];
|
|
padding: 4 8 4 8;
|
|
background-color: @bg;
|
|
border: 0 0 1 0;
|
|
border-color: #ffffff0A;
|
|
}
|
|
|
|
prompt {
|
|
enabled: false;
|
|
}
|
|
|
|
entry {
|
|
text-color: @txt;
|
|
padding: 8 12 8 12;
|
|
}
|