mirror of
https://github.com/alyraffauf/nixcfg.git
synced 2024-11-22 18:23:54 -05:00
Aly Raffauf
1c8f5452ce
Some checks are pending
git-mirror / gitlab-sync (push) Waiting to run
nix-build / default-build (push) Waiting to run
nix-build / fallarbor-build (push) Waiting to run
nix-build / lavaridge-build (push) Waiting to run
nix-build / mauville-build (push) Waiting to run
nix-build / petalburg-build (push) Waiting to run
nix-build / rustboro-build (push) Waiting to run
nix-check / fmt-check (push) Waiting to run
nix-check / eval-check (push) Waiting to run
221 lines
7 KiB
Nix
221 lines
7 KiB
Nix
{
|
|
config,
|
|
lib,
|
|
pkgs,
|
|
...
|
|
}: let
|
|
cfg = config.ar.home;
|
|
scripts = import ./scripts.nix {inherit config lib pkgs;};
|
|
helpers = import ../wayland/helpers.nix {inherit config lib pkgs;};
|
|
in {
|
|
"$mod" = "SUPER";
|
|
|
|
animations = {
|
|
enabled = true;
|
|
bezier = "myBezier,0.05,0.9,0.1,1.05";
|
|
|
|
animation = [
|
|
"border,1,10,default"
|
|
"borderangle,1,8,default"
|
|
"fade,1,7,default"
|
|
"specialWorkspace,1,6,default,slidevert"
|
|
"windows,1,7,myBezier"
|
|
"windowsOut,1,7,default,popin 80%"
|
|
"workspaces,1,6,default"
|
|
];
|
|
};
|
|
|
|
bind =
|
|
[
|
|
"$mod CTRL,L,exec,${lib.getExe pkgs.swaylock}"
|
|
"$mod SHIFT,G,togglegroup"
|
|
"$mod SHIFT,R,exec,${lib.getExe config.programs.rofi.package} -show run"
|
|
"$mod SHIFT,S,movetoworkspace,special:magic"
|
|
"$mod SHIFT,V,togglefloating"
|
|
"$mod SHIFT,W,fullscreen"
|
|
"$mod SHIFT,backslash,togglesplit"
|
|
"$mod SHIFT,comma,exec,${lib.getExe pkgs.hyprnome} --previous --move"
|
|
"$mod SHIFT,period,exec,${lib.getExe pkgs.hyprnome} --move"
|
|
"$mod,B,exec,${lib.getExe cfg.defaultApps.webBrowser}"
|
|
"$mod,C,killactive"
|
|
"$mod,E,exec,${lib.getExe cfg.defaultApps.editor}"
|
|
"$mod,F,exec,${lib.getExe cfg.defaultApps.fileManager}"
|
|
"$mod,F11,exec,pkill -SIGUSR1 waybar"
|
|
"$mod,H,changegroupactive,b"
|
|
"$mod,L,changegroupactive,f"
|
|
"$mod,Left,changegroupactive,b"
|
|
"$mod,R,exec,${lib.getExe config.programs.rofi.package} -show combi"
|
|
"$mod,Right,changegroupactive,f"
|
|
"$mod,S,togglespecialworkspace,magic"
|
|
"$mod,T,exec,${lib.getExe cfg.defaultApps.terminal}"
|
|
"$mod,Tab,exec,${lib.getExe config.programs.rofi.package} -show window"
|
|
"$mod,comma,exec,${lib.getExe pkgs.hyprnome} --previous"
|
|
"$mod,mouse_down,workspace,+1"
|
|
"$mod,mouse_up,workspace,-1"
|
|
"$mod,period,exec,${lib.getExe pkgs.hyprnome}"
|
|
",PRINT,exec,${helpers.screenshot}"
|
|
"CTRL ALT,M,submap,move"
|
|
"CTRL ALT,R,submap,resize"
|
|
"CTRL,F12,exec,${helpers.screenshot}"
|
|
''$mod,M,exec,${lib.getExe config.programs.rofi.package} -show power-menu -modi "power-menu:${lib.getExe pkgs.rofi-power-menu} --choices=logout/lockscreen/suspend/shutdown/reboot"''
|
|
]
|
|
++ builtins.map (x: "$mod SHIFT,${toString x},movetoworkspace,${toString x}") [1 2 3 4 5 6 7 8 9]
|
|
++ builtins.map (x: "$mod,${toString x},workspace,${toString x}") [1 2 3 4 5 6 7 8 9]
|
|
++ lib.attrsets.mapAttrsToList (key: direction: "$mod CTRL SHIFT,${key},movecurrentworkspacetomonitor,${builtins.substring 0 1 direction}") cfg.desktop.windowManagerBinds
|
|
++ lib.attrsets.mapAttrsToList (key: direction: "$mod SHIFT,${key},movewindow,${builtins.substring 0 1 direction}") cfg.desktop.windowManagerBinds
|
|
++ lib.attrsets.mapAttrsToList (key: direction: "$mod,${key},movefocus,${builtins.substring 0 1 direction}") cfg.desktop.windowManagerBinds;
|
|
|
|
bindm = [
|
|
# Move/resize windows with mainMod + LMB/RMB and dragging
|
|
"$mod,mouse:272,movewindow"
|
|
"$mod,mouse:273,resizewindow"
|
|
];
|
|
|
|
bindl =
|
|
[
|
|
# Volume, microphone, and media keys.
|
|
",xf86audiomute,exec,${helpers.volume.mute}"
|
|
",xf86audiomicmute,exec,${helpers.volume.micMute}"
|
|
",xf86audioplay,exec,${helpers.media.play}"
|
|
",xf86audioprev,exec,${helpers.media.prev}"
|
|
",xf86audionext,exec,${helpers.media.next}"
|
|
]
|
|
++ builtins.map (switch: ",switch:${switch},exec,${scripts.tablet}") cfg.desktop.hyprland.tabletMode.switches
|
|
++ lib.lists.optionals (cfg.desktop.hyprland.laptopMonitors != [])
|
|
[
|
|
",switch:on:Lid Switch,exec,${scripts.clamshell} on"
|
|
",switch:off:Lid Switch,exec,${scripts.clamshell} off"
|
|
];
|
|
|
|
bindle = [
|
|
# Display, volume, microphone, and media keys.
|
|
",xf86monbrightnessup,exec,${helpers.brightness.up}"
|
|
",xf86monbrightnessdown,exec,${helpers.brightness.down}"
|
|
",xf86audioraisevolume,exec,${helpers.volume.up}"
|
|
",xf86audiolowervolume,exec,${helpers.volume.down}"
|
|
];
|
|
|
|
decoration = {
|
|
blur = {
|
|
enabled = true;
|
|
passes = 2;
|
|
size = 8;
|
|
};
|
|
|
|
dim_special = 0.5;
|
|
drop_shadow = true;
|
|
|
|
layerrule = [
|
|
"blur,gtk-layer-shell"
|
|
"blur,launcher"
|
|
"blur,logout_dialog"
|
|
"blur,notifications"
|
|
"blur,rofi"
|
|
"blur,swayosd"
|
|
"blur,waybar"
|
|
"ignorezero,gtk-layer-shell"
|
|
"ignorezero,notifications"
|
|
"ignorezero,rofi"
|
|
"ignorezero,swayosd"
|
|
"ignorezero,waybar"
|
|
];
|
|
|
|
rounding = cfg.theme.borders.radius;
|
|
shadow_range = 4;
|
|
shadow_render_power = 3;
|
|
};
|
|
|
|
dwindle.preserve_split = true;
|
|
|
|
exec-once = [
|
|
"${pkgs.mate.mate-polkit}/libexec/polkit-mate-authentication-agent-1"
|
|
];
|
|
|
|
input = {
|
|
follow_mouse = 1;
|
|
kb_layout = "us";
|
|
kb_variant = "altgr-intl";
|
|
sensitivity = 0; # -1.0 to 1.0, 0 means no modification.
|
|
|
|
touchpad = {
|
|
clickfinger_behavior = true;
|
|
drag_lock = true;
|
|
middle_button_emulation = true;
|
|
natural_scroll = true;
|
|
tap-to-click = true;
|
|
};
|
|
};
|
|
|
|
general = {
|
|
allow_tearing = false;
|
|
border_size = 4;
|
|
gaps_in = 5;
|
|
gaps_out = 6;
|
|
layout = "dwindle";
|
|
};
|
|
|
|
gestures = {
|
|
workspace_swipe = true;
|
|
workspace_swipe_touch = true;
|
|
};
|
|
|
|
group = {
|
|
groupbar = {
|
|
height = 24;
|
|
text_color = lib.mkForce "rgb(${config.lib.stylix.colors.base00})";
|
|
font_size = config.stylix.fonts.sizes.desktop;
|
|
};
|
|
};
|
|
|
|
master = {
|
|
always_center_master = true;
|
|
new_status = false;
|
|
};
|
|
|
|
misc = {
|
|
disable_hyprland_logo = true;
|
|
disable_splash_rendering = true;
|
|
focus_on_activate = true;
|
|
font_family = config.stylix.fonts.sansSerif.name;
|
|
vfr = true;
|
|
};
|
|
|
|
monitor =
|
|
[",preferred,auto,auto"]
|
|
++ cfg.desktop.hyprland.laptopMonitors
|
|
++ cfg.desktop.hyprland.monitors;
|
|
|
|
windowrulev2 = [
|
|
"center(1),class:(.blueman-manager-wrapped)"
|
|
"center(1),class:(blueberry.py)"
|
|
"center(1),class:(com.github.wwmm.easyeffects)"
|
|
"center(1),class:(gcr-prompter)"
|
|
"center(1),class:(nm-connection-editor)"
|
|
"center(1),class:(pavucontrol)"
|
|
"center(1),class:(polkit-mate-authentication-agent-1)"
|
|
"center(1),initialTitle:(File Operation Progress)"
|
|
"float,class:(.blueman-manager-wrapped)"
|
|
"float,class:(blueberry.py)"
|
|
"float,class:(com.github.wwmm.easyeffects)"
|
|
"float,class:(nm-connection-editor)"
|
|
"float,class:(pavucontrol)"
|
|
"float,class:^(firefox)$, title:^(Picture-in-Picture)$"
|
|
"float,initialTitle:(File Operation Progress)"
|
|
"move 70% 20%, class:^(firefox)$, title:^(Picture-in-Picture)$"
|
|
"pin,class:(gcr-prompter)"
|
|
"pin,class:(polkit-mate-authentication-agent-1)"
|
|
"pin,class:^(firefox)$, title:^(Picture-in-Picture)$"
|
|
"size 40% 20%,initialTitle:(File Operation Progress)"
|
|
"size 40% 60%,class:(.blueman-manager-wrapped)"
|
|
"size 40% 60%,class:(blueberry.py)"
|
|
"size 40% 60%,class:(com.github.wwmm.easyeffects)"
|
|
"size 40% 60%,class:(nm-connection-editor)"
|
|
"size 40% 60%,class:(pavucontrol)"
|
|
"stayfocused,class:(gcr-prompter)"
|
|
"stayfocused,class:(polkit-mate-authentication-agent-1)"
|
|
"suppressevent maximize, class:.*"
|
|
];
|
|
|
|
xwayland.force_zero_scaling = true;
|
|
}
|