5 Commits

5 changed files with 26 additions and 7 deletions
+2 -1
View File
@@ -30,7 +30,8 @@
shake = { shake = {
enabled = true; enabled = true;
threshold = 4.0; threshold = 4.0;
factor = 1.5; limit = 4.0;
timeout = 200;
}; };
}; };
+1
View File
@@ -1,5 +1,6 @@
{pkgs, ...}: { {pkgs, ...}: {
home.packages = with pkgs; [ home.packages = with pkgs; [
# FIXME: only dark mode works. use matugen
jellyfin-tui jellyfin-tui
]; ];
} }
+1 -1
View File
@@ -163,7 +163,7 @@ in {
"cpu" = { "cpu" = {
interval = 5; interval = 5;
format = "󰍛"; format = "󰍛";
on-click = "hakase-popup-launch btop 800 600"; on-click = "hakase-popup-launch btop";
on-click-right = "xdg-terminal-exec"; on-click-right = "xdg-terminal-exec";
}; };
+3 -3
View File
@@ -5,13 +5,13 @@
home.pointerCursor = { home.pointerCursor = {
gtk.enable = true; gtk.enable = true;
package = pkgs.rose-pine-hyprcursor; package = pkgs.catppuccin-cursors.mochaDark;
name = "rose-pine-hyprcursor"; name = "Catppuccin Mocha Dark";
size = 24; size = 24;
}; };
wayland.windowManager.hyprland.settings = { wayland.windowManager.hyprland.settings = {
env = [ env = [
"HYPRCURSOR_THEME,rose-pine-hyprcursor" "HYPRCURSOR_THEME,Catppuccin Mocha Dark"
"HYPRCURSOR_SIZE,24" "HYPRCURSOR_SIZE,24"
]; ];
}; };
+19 -2
View File
@@ -1,4 +1,21 @@
{pkgs, ...}: { {pkgs, ...}: {
# USB wakeup configuration - Temporarily Disabled # USB wakeup configuration
# systemd.services.disable-usb-wakeups = { ... }; # Disabling USB wakeups to prevent accidental wakeups from mouse/keyboard/bluetooth
systemd.services.disable-usb-wakeups = {
description = "Disable USB wakeup triggers";
wantedBy = ["multi-user.target" "post-resume.target"];
after = ["post-resume.target"];
serviceConfig = {
Type = "oneshot";
ExecStart = pkgs.writeShellScript "disable-usb-wakeups" ''
for device in XHC0 XHC1 XHC2 XH00 GPP0 GPP7; do
if grep -q "$device.*enabled" /proc/acpi/wakeup; then
echo "Disabling wakeup for $device"
echo "$device" > /proc/acpi/wakeup
fi
done
'';
RemainAfterExit = true;
};
};
} }