Просмотр исходного кода

replace default anime stuff with taste

Johan Rong 2 месяцев назад
Родитель
Сommit
d3f3318a0f

+ 2 - 2
home/features/desktop/hyprland/config/caelestia-shell.json

@@ -584,9 +584,9 @@
     "paths": {
         "lockNoNotifsPic": "root:/assets/dino.png",
         "lyricsDir": "~/Music/lyrics/",
-        "mediaGif": "root:/assets/bongocat.gif",
+        "mediaGif": "~/.config/caelestia/img/tux-race.gif",
         "noNotifsPic": "root:/assets/dino.png",
-        "sessionGif": "root:/assets/kurukuru.gif",
+        "sessionGif": "~/.config/caelestia/img/tux-fly.gif",
         "wallpaperDir": "~/Pictures/Wallpapers"
     },
     "services": {

+ 11 - 0
home/features/desktop/hyprland/config/img/default.nix

@@ -0,0 +1,11 @@
+{ pkgs, lib, ... }:
+
+{
+  home = {
+    file = {
+      ".config/caelestia/img/bg.png".source = ./reef.png;
+      ".config/caelestia/img/tux-fly.gif".source = ./tux-fly.gif;
+      ".config/caelestia/img/tux-race.gif".source = ./tux-race.gif;
+    };
+  };
+}

+ 0 - 0
home/features/desktop/hyprland/theming/reef.png → home/features/desktop/hyprland/config/img/reef.png


BIN
home/features/desktop/hyprland/config/img/tux-fly.gif


BIN
home/features/desktop/hyprland/config/img/tux-race.gif


+ 1 - 1
home/features/desktop/hyprland/config/modules/autostart.lua

@@ -1,6 +1,6 @@
 hl.on("hyprland.start", function ()
   hl.exec_cmd("caelestia shell")
-  hl.exec_cmd("caelestia shell wallpaper set ~/.config/hypr/bg.png")
+  hl.exec_cmd("caelestia shell wallpaper set ~/.config/caelestia/img/bg.png")
   hl.exec_cmd("caelestia scheme set --name dynamic --mode dark")
   hl.exec_cmd("wl-paste --watch cliphist store")
 end)

+ 1 - 1
home/features/desktop/hyprland/default.nix

@@ -2,7 +2,7 @@
 
 {
   imports = [
-    ./theming/bg.nix
+    ./config/img
     ./theming/notwaita.nix
     ./theming/breeze-dark.nix
   ];

+ 0 - 9
home/features/desktop/hyprland/theming/bg.nix

@@ -1,9 +0,0 @@
-{ pkgs, lib, ... }:
-
-{
-  home = {
-    file = {
-      ".config/hypr/bg.png".source = ./reef.png;
-    };
-  };
-}