dotfiles/dot_config/rofi/powermenu.rasi

113 lines
2.4 KiB
Text
Raw Normal View History

2022-07-30 07:17:12 +02:00
configuration {
2022-12-11 20:48:32 +01:00
font: "Berkeley Mono 10, Symbols Nerd Font Mono 10";
2022-07-30 07:17:12 +02:00
show-icons: true;
2022-12-11 20:48:32 +01:00
display-drun: "";
2022-07-30 07:17:12 +02:00
drun-display-format: "{name}";
disable-history: false;
fullscreen: false;
hide-scrollbar: true;
sidebar-mode: false;
}
@import "colors.rasi"
window {
2022-12-11 20:48:32 +01:00
background-color: @base;
text-color: @text;
2022-07-30 07:17:12 +02:00
border: 0px;
2022-12-11 20:48:32 +01:00
border-color: @pink;
2022-07-30 07:17:12 +02:00
border-radius: 0px;
width: 300px;
location: center;
x-offset: 0;
y-offset: 0;
}
prompt {
enabled: true;
padding: 0px 0px 0px 5px;
2022-12-11 20:48:32 +01:00
background-color: @base;
text-color: @text;
2022-07-30 07:17:12 +02:00
}
textbox-prompt-colon {
padding: 0px 0px 0px 2px;
2022-12-11 20:48:32 +01:00
background-color: @base;
text-color: @pink;
2022-07-30 07:17:12 +02:00
expand: false;
2022-12-11 20:48:32 +01:00
str: " ";
2022-07-30 07:17:12 +02:00
}
entry {
2022-12-11 20:48:32 +01:00
background-color: @base;
text-color: @text;
placeholder-color: @text;
2022-07-30 07:17:12 +02:00
expand: true;
horizontal-align: 0;
placeholder: "Search...";
padding: 0px;
blink: true;
}
inputbar {
children: [ textbox-prompt-colon, prompt ];
2022-12-11 20:48:32 +01:00
background-color: @base;
text-color: @text;
2022-07-30 07:17:12 +02:00
expand: false;
border: 0px 0px 0px 0px;
border-radius: 0px;
2022-12-11 20:48:32 +01:00
border-color: @pink;
2022-07-30 07:17:12 +02:00
margin: 0px;
padding: 12px;
}
listview {
2022-12-11 20:48:32 +01:00
background-color: @base;
2022-07-30 07:17:12 +02:00
padding: 0px;
columns: 1;
lines: 5;
spacing: 0px;
cycle: true;
dynamic: true;
layout: vertical;
}
mainbox {
2022-12-11 20:48:32 +01:00
background-color: @base;
2022-07-30 07:17:12 +02:00
border: 0px;
border-radius: 0px;
2022-12-11 20:48:32 +01:00
border-color: @crust;
2022-07-30 07:17:12 +02:00
children: [ inputbar, listview ];
spacing: 0px;
padding: 0px;
}
element {
2022-12-11 20:48:32 +01:00
background-color: @base;
text-color: @text;
2022-07-30 07:17:12 +02:00
orientation: horizontal;
border-radius: 0px;
padding: 8px 8px 8px -15px;
}
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 {
2022-12-11 20:48:32 +01:00
background-color: @surface2;
text-color: @text;
2022-07-30 07:17:12 +02:00
border: 0px 0px 0px 2px;
border-radius: 0px;
2022-12-11 20:48:32 +01:00
border-color: @pink;
2022-07-30 07:17:12 +02:00
}