idk I'm lazy

This commit is contained in:
KoenDR06 2026-02-10 21:25:25 +01:00
parent dfcea20497
commit 27d84c3a50
7 changed files with 79 additions and 13 deletions

View file

@ -61,6 +61,14 @@ in {
speed = 20;
curve = slowFade;
};
fadeLayers = {
speed = 1.5;
curve = linear;
};
fadeSwitch = {
speed = 3;
curve = easeOut;
};
windows = {
speed = 3;
@ -74,10 +82,6 @@ in {
style = "popin";
};
fadeLayers = {
speed = 1.5;
curve = linear;
};
fadeOut = {
speed = 10;
curve = linear;

View file

@ -44,6 +44,7 @@ in {
fuzzel # Launcher
xdg-desktop-portal-hyprland # XDG Portal (needed but idk why)
catppuccin-cursors."${flavor}Dark" # Cursors
dunst # Notifications
];
horseman.hardware.keyd.enable = true;
@ -59,6 +60,7 @@ in {
"systemctl --user start hyprpolkitagent"
"waybar"
"hyprctl setcursor catppuccin-${flavor}-dark-cursors 24"
"dunst --startup_notification"
];
env = [
@ -76,9 +78,6 @@ in {
"suppressevent maximize, class:.*"
"nofocus,class:^$,title:^$,xwayland:1,floating:1,fullscreen:0,pinned:0"
"float, initialTitle:^Picture-in-Picture$"
"center, initialTitle:^Picture-in-Picture$"
"size 1280 720, initialTitle:^Picture-in-Picture$"
"opacity 1.0 override, initialTitle:^Picture-in-Picture$"
"float, initialClass:CImg"
@ -105,7 +104,7 @@ in {
decoration = {
rounding = 10;
activeOpacity = 1.0;
inactiveOpacity = 0.9;
inactiveOpacity = 0.7;
dimSpecial = 0.4;
@ -117,7 +116,7 @@ in {
blur = {
enabled = true;
size = 10;
size = 5;
passes = 3;
};
};

View file

@ -119,9 +119,23 @@ in {
{
flags = [];
mods = ["SUPER"];
key = "T";
dispatcher = "togglegroup";
params = "";
key = "D";
dispatcher = "exec";
params = "dunstctl close";
}
{
flags = [];
mods = ["SUPER" "SHIFT"];
key = "D";
dispatcher = "exec";
params = "dunstctl close-all";
}
{
flags = [];
mods = ["SUPER" "ALT"];
key = "D";
dispatcher = "exec";
params = "dunstctl history-pop";
}
{

View file

@ -42,6 +42,7 @@ in {
horseman.dots = {
fuzzel.enable = true;
waybar.enable = true;
dunst.enable = true;
};
home-manager.users.${homeCfg.username} = {