diff --git a/systems/modules/home/backgrounds/catppucin.png b/systems/modules/home/backgrounds/catppucin.png new file mode 100644 index 0000000..27ef241 Binary files /dev/null and b/systems/modules/home/backgrounds/catppucin.png differ diff --git a/systems/modules/home/programs/zsh.nix b/systems/modules/home/programs/zsh.nix index 926fd62..7cbbded 100644 --- a/systems/modules/home/programs/zsh.nix +++ b/systems/modules/home/programs/zsh.nix @@ -26,7 +26,8 @@ --height=80% \ --layout=reverse \ --border \ - --preview 'docker logs --tail=30 {1}' \ + --preview 'docker logs -f --tail=30 {1} 2>&1' \ + --preview-window='right,65%,follow,border-left' \ | awk '{print $1}' ) diff --git a/systems/modules/home/wm/hyprland.nix b/systems/modules/home/wm/hyprland.nix index d399303..8e9fdc5 100644 --- a/systems/modules/home/wm/hyprland.nix +++ b/systems/modules/home/wm/hyprland.nix @@ -89,7 +89,7 @@ in animations.enabled = true; decoration = { - inactive_opacity = 0.8; + inactive_opacity = 0.7; active_opacity = 0.9; rounding = 5; rounding_power = 2.5; diff --git a/systems/modules/home/wm/hyprpaper.nix b/systems/modules/home/wm/hyprpaper.nix index 9e25574..adcef9a 100644 --- a/systems/modules/home/wm/hyprpaper.nix +++ b/systems/modules/home/wm/hyprpaper.nix @@ -4,6 +4,7 @@ let wallpaper = builtins.toString ../backgrounds/monkey.jpg; wallpaper2 = builtins.toString ../backgrounds/bird.jpg; wallpaper3 = builtins.toString ../backgrounds/nix.png; + wallpaper4 = builtins.toString ../backgrounds/catppucin.png; in { services.hyprpaper = { @@ -15,12 +16,13 @@ in wallpaper wallpaper2 wallpaper3 + wallpaper4 ]; wallpaper = [ { monitor = ""; - path = wallpaper3; + path = wallpaper4; } ]; };