AwesomeFiles/config/rofi/config.rasi

104 lines
1.6 KiB
Plaintext
Raw Normal View History

2022-02-21 05:10:32 -06:00
configuration {
modi: "run,drun,Kill:~/.config/rofi/scripts/kill.sh";
font: "Iosevka 9";
display-drun: "Apps";
display-run: "Run";
drun-display-format: "{name}";
sidebar-mode: true;
}
@theme "/dev/null"
* {
bg: #061115;
fg: #d9d7d6;
accent: #1c252c;
2022-03-09 22:33:42 -06:00
darker-bg: #0A1419;
active: #484e5b;
rad: 4px;
2022-02-21 05:10:32 -06:00
background-color: @bg;
text-color: @fg;
}
2022-03-09 22:33:42 -06:00
2022-02-21 05:10:32 -06:00
window {
width: 30%;
2022-03-09 22:33:42 -06:00
border: 4px;
border-color: @darker-bg;
2022-02-21 05:10:32 -06:00
}
inputbar {
2022-03-09 22:33:42 -06:00
children: [ textbox, entry ];
expand: false;
margin: 20px 20px 0;
border-radius: @rad;
background-color: @darker-bg;
2022-02-21 05:10:32 -06:00
}
2022-03-09 22:33:42 -06:00
textbox {
str: "";
expand: false;
padding: 0 1% 0;
horizontal-align: 0.5;
vertical-align: 0.5;
border-radius: @rad;
background-color: @accent;
text-color: @bg;
font: "Material Icons 17";
2022-02-21 05:10:32 -06:00
}
2022-03-09 22:33:42 -06:00
entry{
expand: true;
padding: 2%;
placeholder: "Search";
border-radius: @rad;
background-color: @darker-bg;
2022-02-21 05:10:32 -06:00
}
listview {
columns: 1;
lines: 12;
cycle: false;
dynamic: true;
layout: vertical;
2022-03-09 22:33:42 -06:00
margin: 15px 20px 15px 20px;
2022-02-21 05:10:32 -06:00
}
element {
orientation: vertical;
padding: 8px 8px;
}
element-text {
expand: true;
vertical-align: 0.5;
background-color: inherit;
text-color: inherit;
}
element selected {
2022-03-09 22:33:42 -06:00
background-color: @darker-bg;
2022-02-21 05:10:32 -06:00
text-color: @fg;
2022-03-09 22:33:42 -06:00
border-radius: @rad;
2022-02-21 05:10:32 -06:00
}
mode-switcher {
2022-03-09 22:33:42 -06:00
background-color: @darker-bg;
2022-02-21 05:10:32 -06:00
padding: 0 0 4px 0;
}
button {
2022-03-09 22:33:42 -06:00
text-color: @accent;
background-color: @darker-bg;
2022-02-21 05:10:32 -06:00
padding: 6px 6px 6px 6px;
horizontal-align: 0.5;
}
button selected {
2022-03-09 22:33:42 -06:00
text-color: @active;
2022-02-21 05:10:32 -06:00
background-color: @bg;
border-radius: 0 0 4px 4px;
}