dotfiles/.config/rofi/config.rasi

142 lines
3.9 KiB
Plaintext
Raw Normal View History

2020-07-24 19:01:06 +00:00
/*
*
* Author : Aditya Shakya (adi1090x)
* Mail : adi1090x@gmail.com
* Github : @adi1090x
* Reddit : @adi1090x
*
*/
2020-07-04 22:48:27 +00:00
configuration {
2020-07-24 19:01:06 +00:00
font: "SFNS Display Bold 10";
show-icons: true;
icon-theme: "Papirus";
drun-display-format: "{name}";
threads: 0;
scroll-method: 0;
disable-history: false;
fullscreen: false;
hide-scrollbar: true;
sidebar-mode: false;
2020-07-04 22:48:27 +00:00
}
2020-07-24 19:01:06 +00:00
2020-07-16 11:55:22 +00:00
* {
2020-07-24 19:01:06 +00:00
background: #00000000;
background-color: #00000066;
background-entry: #00000033;
background-alt: #f2f2f215;
foreground: #f2f2f2EE;
foreground-selected: #ffffffFF;
urgent: #E91E6366;
urgent-selected: #E91E6377;
2020-07-16 11:55:22 +00:00
}
window {
2020-07-24 19:01:06 +00:00
transparency: "real";
background-color: @background;
text-color: @foreground;
height: 100%;
width: 100%;
location: northwest;
anchor: northwest;
x-offset: 0;
y-offset: 0;
2020-07-16 11:55:22 +00:00
}
2020-07-24 19:01:06 +00:00
prompt {
enabled: false;
2020-07-16 11:55:22 +00:00
}
2020-07-24 19:01:06 +00:00
inputbar {
background-color: @background-alt;
text-color: @foreground;
expand: false;
border-radius: 6px;
margin: 0px 630px 0px 630px;
padding: 10px 10px 10px 10px;
position: north;
2020-07-16 11:55:22 +00:00
}
2020-07-24 19:01:06 +00:00
2020-07-16 11:55:22 +00:00
entry {
2020-07-24 19:01:06 +00:00
background-color: @background;
text-color: @foreground;
placeholder-color: @foreground;
expand: true;
horizontal-align: 0.5;
placeholder: "Search";
blink: true;
2020-07-16 11:55:22 +00:00
}
2020-07-24 19:01:06 +00:00
case-indicator {
background-color: @background;
text-color: @foreground;
spacing: 0;
2020-07-16 11:55:22 +00:00
}
2020-07-24 19:01:06 +00:00
2020-07-16 11:55:22 +00:00
listview {
2020-07-24 19:01:06 +00:00
background-color: @background;
columns: 7;
spacing: 4px;
cycle: false;
dynamic: true;
layout: vertical;
}
mainbox {
background-color: @background-color;
children: [ inputbar, listview ];
spacing: 25px;
padding: 70px 135px 55px 135px;
2020-07-16 11:55:22 +00:00
}
element {
2020-07-24 19:01:06 +00:00
background-color: @background;
text-color: @foreground;
orientation: vertical;
border-radius: 9px;
padding: 20px 0px 20px 0px;
2020-07-16 11:55:22 +00:00
}
element-icon {
2020-07-24 19:01:06 +00:00
size: 65px;
border: 0px;
}
element-text {
expand: true;
horizontal-align: 0.5;
vertical-align: 0.5;
margin: 5px 10px 0px 10px;
2020-07-16 11:55:22 +00:00
}
2020-07-24 19:01:06 +00:00
element normal.urgent,
element alternate.urgent {
background-color: @urgent;
text-color: @foreground;
border-radius: 9px;
2020-07-16 11:55:22 +00:00
}
2020-07-24 19:01:06 +00:00
element normal.active,
element alternate.active {
background-color: @background-alt;
text-color: @foreground;
2020-07-16 11:55:22 +00:00
}
element selected {
2020-07-24 19:01:06 +00:00
background-color: @background-alt;
text-color: @foreground-selected;
2020-07-16 11:55:22 +00:00
}
element selected.urgent {
2020-07-24 19:01:06 +00:00
background-color: @urgent-selected;
text-color: @foreground;
2020-07-16 11:55:22 +00:00
}
element selected.active {
2020-07-24 19:01:06 +00:00
background-color: @background-alt;
color: @foreground-selected;
2020-07-16 11:55:22 +00:00
}