diff --git a/config/hyprland/hyprland.conf b/config/hyprland/hyprland.conf index 5515e055..61873461 100644 --- a/config/hyprland/hyprland.conf +++ b/config/hyprland/hyprland.conf @@ -30,6 +30,9 @@ input { kb_options = kb_rules = + # no mouse acceleration pls :) + accel_profile = flat + follow_mouse = 1 touchpad { @@ -115,11 +118,11 @@ $mainMod = SUPER # Example binds, see https://wiki.hyprland.org/Configuring/Binds/ for more bind = $mainMod, RETURN, exec, kitty -bind = $mainMod, C, killactive, +bind = $mainMod, W, killactive, bind = $mainMod, M, exit, bind = $mainMod, E, exec, dolphin bind = $mainMod, V, togglefloating, -bind = $mainMod, R, exec, wofi --show drun +bind = $mainMod, SPACE, exec, wofi --show drun bind = $mainMod, P, pseudo, # dwindle bind = $mainMod, J, togglesplit, # dwindle diff --git a/config/hyprland/hyprpaper.conf b/config/hyprland/hyprpaper.conf new file mode 100644 index 00000000..1c08fcdd --- /dev/null +++ b/config/hyprland/hyprpaper.conf @@ -0,0 +1,3 @@ +preload = /home/sako/background.png + +wallpaper = monitor1,/home/sako/background.png diff --git a/modules/desktop/hyprland/default.nix b/modules/desktop/hyprland/default.nix index 43eaa430..f2c90525 100644 --- a/modules/desktop/hyprland/default.nix +++ b/modules/desktop/hyprland/default.nix @@ -53,6 +53,10 @@ in catppuccin-cursors.mochaDark # i wonder if this works flameshot + # bar + waybar + # background + hyprpaper ]; programs.hyprland = { enable = true; @@ -81,6 +85,7 @@ in xdg.configFile = { hypr = { source = ../../../config/hyprland; + recursive = true; }; }; };