mirror of
https://gitlab.com/Zaney/zaneyos.git
synced 2025-03-10 19:18:17 +01:00
50 lines
1.1 KiB
Nix
50 lines
1.1 KiB
Nix
{...}: {
|
|
home.file.".config/rofi/config-long.rasi".text = ''
|
|
@import "~/.config/rofi/config.rasi"
|
|
window {
|
|
width: 750px;
|
|
border-radius: 20px;
|
|
}
|
|
mainbox {
|
|
orientation: vertical;
|
|
children: [ "inputbar", "listbox" ];
|
|
}
|
|
inputbar {
|
|
padding: 75px 40px;
|
|
background-color: transparent;
|
|
background-image: url("~/Pictures/Wallpapers/Rainnight.jpg", width);
|
|
text-color: @foreground;
|
|
children: [ "textbox-prompt-colon", "entry" ];
|
|
}
|
|
textbox-prompt-colon {
|
|
padding: 12px 20px;
|
|
border-radius: 100%;
|
|
background-color: @bg-alt;
|
|
text-color: @foreground;
|
|
}
|
|
entry {
|
|
expand: true;
|
|
padding: 12px 16px;
|
|
border-radius: 100%;
|
|
background-color: @bg-alt;
|
|
text-color: @foreground;
|
|
}
|
|
button {
|
|
padding: 12px;
|
|
border-radius: 100%;
|
|
}
|
|
element {
|
|
spacing: 10px;
|
|
padding: 12px;
|
|
border-radius: 100%;
|
|
}
|
|
textbox {
|
|
padding: 12px;
|
|
border-radius: 100%;
|
|
}
|
|
error-message {
|
|
border-radius: 0px;
|
|
}
|
|
'';
|
|
}
|