Compare commits

...

6 Commits

Author SHA1 Message Date
jay
91b1dda8b2 Make hyprpanel configuration more generic, set hardware specific options for nixy. 2025-06-30 19:47:00 -04:00
jay
15dba5dcaf Remove gpu api option from mpvpaper. 2025-06-30 19:47:00 -04:00
jay
f5a82aa7c2 Set up lappy specific video wallpaper stuffs.
Compilation fix.
2025-06-30 19:47:00 -04:00
jay
b5f5ee58cb Add wallpapers. 2025-06-30 19:47:00 -04:00
jay
527714b0a6 Force cava framerate for lappy to compile. 2025-06-30 19:47:00 -04:00
jay
535071dc2c Set lappy hyprpanel cava framerate to 120.
Fix compilation error.
2025-06-30 19:47:00 -04:00
10 changed files with 26 additions and 3 deletions

View File

@@ -133,7 +133,6 @@
customModules = {
cava = {
showIcon = false;
framerate = 165;
};
cpuTemp.sensor = "/sys/devices/pci0000\:00/0000\:00\:18.3/hwmon/hwmon2/temp3_input";
netstat.rateUnit = "MiB";
@@ -315,7 +314,6 @@
];
settings = {
#"monitor" = "DP-2, 3440x1440@165, 0x0, 1";
"$terminal" = "alacritty";
"$filemanager" = "dolphin";
"$menu" = "rofi -show drun -show-icons";
@@ -519,7 +517,6 @@
"clipse -listen"
"streamcontroller"
#"session-desktop"
"mpvpaper --gpu-api=vulkan -vfp -o 'no-audio no-keepaspect loop vf=lavfi=negate' DP-2 /home/jay/nixos-config/hosts/nixos/wipeout.mkv"
#"wl-clipboard-history -t"
#"wl-paste --watch cliphist store"
#"rm $HOME/.cache/cliphist/db"

Binary file not shown.

After

Width:  |  Height:  |  Size: 623 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 876 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.3 MiB

Binary file not shown.

Binary file not shown.

After

Width:  |  Height:  |  Size: 433 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 168 KiB

View File

@@ -10,12 +10,23 @@
};
};
};
bar = {
customModules = {
cava = {
framerate = lib.mkForce 120;
};
};
};
};
};
wayland.windowManager.hyprland = {
settings = {
"monitor" = "eDP-1, 2880x1800@120, 0x0, 1";
exec-once = [
"mpvpaper -vfp -o 'no-audio no-keepaspect loop vf=lavfi=negate' eDP-1 ../../../common/wallpapers/wipeout.mkv"
];
};
};
}

View File

@@ -1,9 +1,24 @@
{ config, pkgs, inputs, lib, ... }:
{
programs.hyprpanel = {
settings = {
bar = {
customModules = {
cava = {
framerate = lib.mkForce 165;
};
};
};
};
};
wayland.windowManager.hyprland = {
settings = {
"monitor" = "DP-2, 3440x1440@165, 0x0, 1";
exec-once = [
"mpvpaper -vfp -o 'no-audio no-keepaspect loop vf=lavfi=negate' DP-2 ../../../common/wallpapers/wipeout.mkv"
];
};
};
}