46 lines
1.1 KiB
Nix
46 lines
1.1 KiB
Nix
# Wallpaper rotation system
|
|
# The currentIndex is incremented by `nix run .#rotate-wallpaper`
|
|
# and gets committed as part of `nix run .#upgrade`
|
|
{
|
|
currentIndex = 2; # Index into wallpapers list
|
|
|
|
wallpapers = [
|
|
{
|
|
name = "metroid-samus-returns";
|
|
file = ./metroid-samus-returns-kz-3440x1440.jpg;
|
|
sway = "fill";
|
|
feh = "--bg-fill";
|
|
}
|
|
{
|
|
name = "metroid3_map";
|
|
file = ./metroid3_map.gif;
|
|
sway = "fit";
|
|
feh = "--bg-max";
|
|
}
|
|
{
|
|
name = "super-metroid-gunship-cavern";
|
|
file = ./super-metroid-gunship-cavern.jpg;
|
|
sway = "fit";
|
|
feh = "--bg-max";
|
|
}
|
|
{
|
|
name = "super-metroid-samus-statue";
|
|
file = ./super-metroid-samus-statue.png;
|
|
sway = "fit";
|
|
feh = "--bg-max";
|
|
}
|
|
{
|
|
name = "metroid-samus-action-4k";
|
|
file = ./metroid-samus-action-4k.jpg;
|
|
sway = "fit";
|
|
feh = "--bg-max";
|
|
}
|
|
{
|
|
name = "metroid-creature-minimalist";
|
|
file = ./metroid-creature-minimalist.jpg;
|
|
sway = "fit";
|
|
feh = "--bg-max";
|
|
}
|
|
];
|
|
}
|