Compare commits
5 Commits
97d50851f6
...
2ef1d58ea7
| Author | SHA1 | Date | |
|---|---|---|---|
| 2ef1d58ea7 | |||
| 7281eedf56 | |||
| 8394a4cf35 | |||
| f50c57c7b2 | |||
| 795a7babd0 |
@@ -30,7 +30,8 @@
|
||||
shake = {
|
||||
enabled = true;
|
||||
threshold = 4.0;
|
||||
factor = 1.5;
|
||||
limit = 4.0;
|
||||
timeout = 200;
|
||||
};
|
||||
};
|
||||
|
||||
|
||||
@@ -1,5 +1,6 @@
|
||||
{pkgs, ...}: {
|
||||
home.packages = with pkgs; [
|
||||
# FIXME: only dark mode works. use matugen
|
||||
jellyfin-tui
|
||||
];
|
||||
}
|
||||
|
||||
@@ -163,7 +163,7 @@ in {
|
||||
"cpu" = {
|
||||
interval = 5;
|
||||
format = "";
|
||||
on-click = "hakase-popup-launch btop 800 600";
|
||||
on-click = "hakase-popup-launch btop";
|
||||
on-click-right = "xdg-terminal-exec";
|
||||
};
|
||||
|
||||
|
||||
@@ -5,13 +5,13 @@
|
||||
|
||||
home.pointerCursor = {
|
||||
gtk.enable = true;
|
||||
package = pkgs.rose-pine-hyprcursor;
|
||||
name = "rose-pine-hyprcursor";
|
||||
package = pkgs.catppuccin-cursors.mochaDark;
|
||||
name = "Catppuccin Mocha Dark";
|
||||
size = 24;
|
||||
};
|
||||
wayland.windowManager.hyprland.settings = {
|
||||
env = [
|
||||
"HYPRCURSOR_THEME,rose-pine-hyprcursor"
|
||||
"HYPRCURSOR_THEME,Catppuccin Mocha Dark"
|
||||
"HYPRCURSOR_SIZE,24"
|
||||
];
|
||||
};
|
||||
|
||||
+19
-2
@@ -1,4 +1,21 @@
|
||||
{pkgs, ...}: {
|
||||
# USB wakeup configuration - Temporarily Disabled
|
||||
# systemd.services.disable-usb-wakeups = { ... };
|
||||
# USB wakeup configuration
|
||||
# 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;
|
||||
};
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user