added rofi launcher configuration file
This commit is contained in:
parent
e258e2c487
commit
6c39f6b5e2
1 changed files with 86 additions and 0 deletions
86
.config/rofi/config.rasi
Normal file
86
.config/rofi/config.rasi
Normal file
|
@ -0,0 +1,86 @@
|
||||||
|
configuration {
|
||||||
|
font: "Hack 16";
|
||||||
|
display-drun: " ";
|
||||||
|
drun-display-format: "{icon} {name}";
|
||||||
|
modi: "run";
|
||||||
|
show-icons: true;
|
||||||
|
icon-theme: "Papirus";
|
||||||
|
}
|
||||||
|
|
||||||
|
@theme "/dev/null"
|
||||||
|
|
||||||
|
* {
|
||||||
|
bg: #1e1e2e99;
|
||||||
|
bg-alt: #585b7099;
|
||||||
|
bg-selected: #31324499;
|
||||||
|
|
||||||
|
fg: #cdd6f4;
|
||||||
|
fg-alt: #7f849c;
|
||||||
|
|
||||||
|
border: 0;
|
||||||
|
margin: 0;
|
||||||
|
padding: 0;
|
||||||
|
spacing: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
window {
|
||||||
|
width: 30%;
|
||||||
|
background-color: @bg;
|
||||||
|
border-radius: 10px;
|
||||||
|
}
|
||||||
|
|
||||||
|
element {
|
||||||
|
padding: 8 12;
|
||||||
|
background-color: transparent;
|
||||||
|
text-color: @fg-alt;
|
||||||
|
}
|
||||||
|
|
||||||
|
element selected {
|
||||||
|
text-color: @fg;
|
||||||
|
background-color: @bg-selected;
|
||||||
|
}
|
||||||
|
|
||||||
|
element-text {
|
||||||
|
background-color: transparent;
|
||||||
|
text-color: inherit;
|
||||||
|
vertical-align: 0.5;
|
||||||
|
}
|
||||||
|
|
||||||
|
element-icon {
|
||||||
|
size: 30;
|
||||||
|
padding: 0 10 0 0;
|
||||||
|
background-color: transparent;
|
||||||
|
}
|
||||||
|
|
||||||
|
entry {
|
||||||
|
padding: 12;
|
||||||
|
background-color: @bg-alt;
|
||||||
|
text-color: @fg;
|
||||||
|
font: "Hack 28";
|
||||||
|
}
|
||||||
|
|
||||||
|
inputbar {
|
||||||
|
children: [prompt, entry];
|
||||||
|
background-color: @bg;
|
||||||
|
}
|
||||||
|
|
||||||
|
listview {
|
||||||
|
background-color: @bg;
|
||||||
|
columns: 1;
|
||||||
|
lines: 10;
|
||||||
|
}
|
||||||
|
|
||||||
|
mainbox {
|
||||||
|
children: [inputbar, listview];
|
||||||
|
background-color: @bg;
|
||||||
|
}
|
||||||
|
|
||||||
|
prompt {
|
||||||
|
enabled: true;
|
||||||
|
padding: 12 0 0 12;
|
||||||
|
background-color: @bg-alt;
|
||||||
|
text-color: @fg;
|
||||||
|
font: "Hack 30";
|
||||||
|
}
|
||||||
|
|
||||||
|
/* vim: ft=sass
|
Loading…
Reference in a new issue