206 lines
6.2 KiB
Nix
206 lines
6.2 KiB
Nix
{
|
|
config,
|
|
pkgs,
|
|
...
|
|
}:
|
|
{
|
|
imports = [ ./waybar.nix ];
|
|
|
|
# services.mako = {
|
|
# enable = true;
|
|
# defaultTimeout = 4000;
|
|
# borderRadius = 5;
|
|
# borderSize = 2;
|
|
# layer = "overlay";
|
|
# };
|
|
|
|
wayland.windowManager.hyprland.enable = true;
|
|
|
|
wayland.windowManager.hyprland.settings = {
|
|
xwayland.force_zero_scaling = true;
|
|
|
|
input = {
|
|
sensitivity = 0.4;
|
|
# todo custom
|
|
accel_profile = "adaptive";
|
|
# accel_profile = "custom 20000 0.755 0.05 0.855 0.06";
|
|
touchpad = {
|
|
natural_scroll = true;
|
|
scroll_factor = 0.38;
|
|
clickfinger_behavior = true;
|
|
};
|
|
};
|
|
|
|
general = {
|
|
gaps_in = 5;
|
|
gaps_out = 16;
|
|
resize_on_border = true;
|
|
hover_icon_on_border = false;
|
|
layout = "dwindle";
|
|
};
|
|
|
|
master = {
|
|
# new_is_master = false;
|
|
smart_resizing = false;
|
|
};
|
|
|
|
dwindle = {
|
|
force_split = 2;
|
|
preserve_split = true;
|
|
};
|
|
|
|
decoration = {
|
|
rounding = 5;
|
|
active_opacity = 0.93;
|
|
inactive_opacity = 0.93;
|
|
fullscreen_opacity = 1;
|
|
# drop_shadow = false;
|
|
};
|
|
animations = {
|
|
enabled = true;
|
|
bezier = [
|
|
"myBezier, 0.22, 1, 0.36, 1"
|
|
"snap, 0, 1, 0, 1"
|
|
];
|
|
|
|
animation = [
|
|
"windows, 1, 7, myBezier"
|
|
"windowsOut, 1, 3, default, popin 60%"
|
|
"border, 1, 0.5, snap"
|
|
"borderangle, 1, 0.5, snap"
|
|
"fade, 1, 0.001, myBezier"
|
|
"workspaces, 1, 0.8, myBezier, fade"
|
|
];
|
|
};
|
|
|
|
# https://wiki.hyprland.org/Configuring/Variables/#gestures
|
|
gestures = {
|
|
workspace_swipe = true;
|
|
workspace_swipe_fingers = 3;
|
|
workspace_swipe_cancel_ratio = 0.6;
|
|
workspace_swipe_min_speed_to_force = 30;
|
|
workspace_swipe_distance = 2000;
|
|
workspace_swipe_invert = true;
|
|
};
|
|
|
|
misc = {
|
|
disable_hyprland_logo = true;
|
|
disable_splash_rendering = true;
|
|
force_default_wallpaper = 0;
|
|
mouse_move_enables_dpms = true;
|
|
key_press_enables_dpms = true;
|
|
};
|
|
|
|
"$mod" = "SUPER";
|
|
|
|
bind = [
|
|
# general binds
|
|
",switch:Lid Switch, exec, ${pkgs.hyprlock}/bin/hyprlock" # Lock when closing Lid
|
|
# "$mod, RETURN, exec, ${pkgs.alacritty}/bin/alacritty"
|
|
"$mod, RETURN, exec, ${pkgs.ghostty}/bin/ghostty"
|
|
"$shiftMod,SPACE, exec, hyprfocus-toggle" # Toggle HyprFocus
|
|
"$mod, Q, killactive"
|
|
"SUPER_SHIFT, Q, exec, ${pkgs.wlogout}/bin/wlogout"
|
|
"$mod, SPACE, exec, pkill fuzzel || ${pkgs.fuzzel}/bin/fuzzel" # pkill or allows for toggle
|
|
"SUPER_SHIFT, SPACE, togglefloating"
|
|
"$mod, F, fullscreen"
|
|
# "$mod,F, exec, hyprfocus-toggle" # Toggle HyprFocus
|
|
"$mod, L, exec, ${pkgs.hyprlock}/bin/hyprlock"
|
|
"$mod, B, exec, ${pkgs.grim}/bin/grim \"desktop-$(${pkgs.busybox}/bin/date +\"%Y%m%d%H%m\").png"
|
|
"SUPER_SHIFT, B, exec, ${pkgs.grim}/bin/grim -g \"$(${pkgs.slurp}/bin/slurp -d)\" - | ${pkgs.wl-clipboard}/bin/wl-copy" # Screenshot selection directly to clipboard
|
|
|
|
# Volume
|
|
",XF86AudioRaiseVolume, exec, ${pkgs.ponymix}/bin/ponymix inc 2"
|
|
",XF86AudioLowerVolume, exec, ${pkgs.ponymix}/bin/ponymix dec 2"
|
|
",XF86AudioMute, exec, ${pkgs.ponymix}/bin/ponymix, toggle"
|
|
|
|
# Screen Brightness
|
|
#",XF86MonBrightnessUp, exec, ${pkgs.light}/bin/light -A 10"
|
|
#",XF86MonBrightnessDown, exec, ${pkgs.light}/bin/light -U 10"
|
|
# ",XF86MonBrightnessUp, exec, ${pkgs.light}/bin/light -S \"$(${pkgs.light}/bin/light -G | ${pkgs.busybox}/bin/awk '{ print int(($1 + .72) * 1.4) }')\""
|
|
# ",XF86MonBrightnessDown, exec, ${pkgs.light}/bin/light -S \"$(${pkgs.light}/bin/light -G | ${pkgs.busybox}/bin/awk '{ print int($1 / 1.4) }')\""
|
|
",XF86MonBrightnessUp, exec, brightness-up" # Brightness Up
|
|
",XF86MonBrightnessDown, exec, brightness-down" # Brightness Down
|
|
# move focus
|
|
"$mod, left, movefocus, l"
|
|
"$mod, right, movefocus, r"
|
|
"$mod, up, movefocus, u"
|
|
"$mod, down, movefocus, d"
|
|
"$mod,right,workspace,+1"
|
|
"$mod,left,workspace,-1"
|
|
|
|
# workspace switching
|
|
"$mod, 1, workspace, 1"
|
|
"$mod, 2, workspace, 2"
|
|
"$mod, 3, workspace, 3"
|
|
"$mod, 4, workspace, 4"
|
|
"$mod, 5, workspace, 5"
|
|
"$mod, 6, workspace, 6"
|
|
"$mod, 7, workspace, 7"
|
|
"$mod, 8, workspace, 8"
|
|
"$mod, 9, workspace, 9"
|
|
"$mod, 0, workspace, 10"
|
|
|
|
# move window to workspace
|
|
"$mod SHIFT, 1, movetoworkspace, 1"
|
|
"$mod SHIFT, 2, movetoworkspace, 2"
|
|
"$mod SHIFT, 3, movetoworkspace, 3"
|
|
"$mod SHIFT, 4, movetoworkspace, 4"
|
|
"$mod SHIFT, 5, movetoworkspace, 5"
|
|
"$mod SHIFT, 6, movetoworkspace, 6"
|
|
"$mod SHIFT, 7, movetoworkspace, 7"
|
|
"$mod SHIFT, 8, movetoworkspace, 8"
|
|
"$mod SHIFT, 9, movetoworkspace, 9"
|
|
"$mod SHIFT, 0, movetoworkspace, 10"
|
|
|
|
# Scroll through workspaces
|
|
"$mod, mouse_down, workspace, e+1"
|
|
"$mod, mouse_up, workspace, e-1"
|
|
];
|
|
|
|
bindm = [
|
|
# mouse movements
|
|
"$mod, mouse:272, movewindow"
|
|
"$mod_ALT, mouse:273, resizewindow"
|
|
"$mod_ALT, mouse:272, resizewindow"
|
|
];
|
|
|
|
monitor = [
|
|
# "eDP-1,highres,0x0,1"
|
|
# "DP-1,preferred,0x0,1"
|
|
# "HDMI-A-1,2560x0,auto,1"
|
|
",preferred,auto,1"
|
|
];
|
|
# monitor = [ "DP-1,preferred,0x0,1" ];
|
|
# monitor = [ "HDMI-A-1,2560x0,auto,1" ];
|
|
|
|
# monitor = [ "HDMI-A-1,1920x1080@144,auto,1" ];
|
|
exec = [ "${pkgs.swaybg}/bin/swaybg -i ${config.stylix.image} -m fill" ];
|
|
exec-once = [
|
|
# Enables clipboard sync
|
|
"${pkgs.wl-clipboard}/bin/wl-paste -p | ${pkgs.wl-clipboard}/bin/wl-copy"
|
|
"${pkgs.wl-clipboard}/bin/wl-paste | ${pkgs.wl-clipboard}/bin/wl-copy -p"
|
|
];
|
|
};
|
|
|
|
wayland.windowManager.hyprland.extraConfig = ''
|
|
# will switch to a submap called resize
|
|
bind=$mod,R,submap,resize
|
|
|
|
# will start a submap called "resize"
|
|
submap=resize
|
|
|
|
# sets repeatable binds for resizing the active window
|
|
binde=,right,resizeactive,10 0
|
|
binde=,left,resizeactive,-10 0
|
|
binde=,up,resizeactive,0 -10
|
|
binde=,down,resizeactive,0 10
|
|
|
|
# use reset to go back to the global submap
|
|
bind=,escape,submap,reset
|
|
|
|
# will reset the submap, meaning end the current one and return to the global one
|
|
submap=reset
|
|
'';
|
|
|
|
}
|