mirror of
https://github.com/henrysipp/omarchy-nix.git
synced 2026-06-05 18:29:26 -05:00
Refactor for wallpers, keybinds, add weeb tokyo-light theme
This commit is contained in:
@@ -0,0 +1,30 @@
|
||||
config: let
|
||||
cfg = config.omarchy;
|
||||
wallpapers = {
|
||||
"tokyo-night" = [
|
||||
"1-Pawel-Czerwinski-Abstract-Purple-Blue.jpg"
|
||||
];
|
||||
"tokyo-night-light" = [
|
||||
"tokyo-night-light-1.jpg"
|
||||
];
|
||||
"kanagawa" = [
|
||||
"kanagawa-1.png"
|
||||
];
|
||||
"everforest" = [
|
||||
"1-everforest.jpg"
|
||||
];
|
||||
"nord" = [
|
||||
"nord-1.png"
|
||||
];
|
||||
"gruvbox" = [
|
||||
"gruvbox-1.jpg"
|
||||
];
|
||||
"gruvbox-light" = [
|
||||
"gruvbox-1.jpg"
|
||||
];
|
||||
};
|
||||
|
||||
selected_wallpaper = builtins.elemAt (wallpapers.${cfg.theme}) 0;
|
||||
in {
|
||||
wallpaper_path = "~/Pictures/Wallpapers/${selected_wallpaper}";
|
||||
}
|
||||
Reference in New Issue
Block a user