mirror of
https://github.com/nix-community/home-manager.git
synced 2025-12-13 20:41:07 +01:00
If this commit now it is possible to define a custom theme directly
using Nix, like this:
```nix
{
programs.rofi.theme = {
"*" = {
background-color = "#000000";
border-color = "FFFFFF";
width = 512;
};
listview = {
cycle = true;
};
};
}
```
And this will be converted to the proper rasi format to be used in
rofi.
6 lines
72 B
Text
6 lines
72 B
Text
configuration {
|
|
location: 0;
|
|
theme: "custom";
|
|
xoffset: 0;
|
|
yoffset: 0;
|
|
}
|