dotfiles/modules/programs/hyprland/_config.nix

224 lines
7.2 KiB
Nix
Raw Normal View History

2022-11-26 16:02:02 +01:00
{ config
, lib
, ...
}:
2022-12-23 12:39:24 +01:00
with lib;
let
2023-01-11 10:39:29 +01:00
cfg = config.my.programs.hyprland;
2022-12-23 12:39:24 +01:00
mkRule = rule: windowRegexes: "windowrulev2 = ${rule},${concatStringsSep "," windowRegexes}";
mkRules = rules: windowRegexes: concatStringsSep "\n" (map (flip mkRule windowRegexes) rules);
in
2022-11-26 16:02:02 +01:00
''
#
# Please note not all available settings / options are set here.
# For a full list, see the wiki
#
# See https://wiki.hyprland.org/Configuring/Monitors/
2023-09-22 10:14:12 +02:00
${concatLines (map (x: "monitor=${x}") cfg.monitors)}
2022-11-26 16:02:02 +01:00
# See https://wiki.hyprland.org/Configuring/Keywords/ for more
# For all categories, see https://wiki.hyprland.org/Configuring/Variables/
input {
kb_layout = ${concatStringsSep "," cfg.keyboardLayouts}
2022-11-26 16:02:02 +01:00
kb_variant =
kb_model =
2022-12-23 12:39:24 +01:00
kb_options = grp:win_space_toggle,caps:escape
2022-11-26 16:02:02 +01:00
kb_rules =
follow_mouse = 1
touchpad {
natural_scroll = yes
}
sensitivity = 0 # -1.0 - 1.0, 0 means no modification.
}
general {
# See https://wiki.hyprland.org/Configuring/Variables/ for more
2023-04-16 17:59:21 +02:00
gaps_in = 3
gaps_out = 3
2022-11-26 16:02:02 +01:00
border_size = 2
col.active_border = rgba(1affffee)
col.inactive_border = rgba(595959aa)
2022-12-23 12:39:24 +01:00
cursor_inactive_timeout = 1
2022-11-26 16:02:02 +01:00
layout = dwindle
}
decoration {
# See https://wiki.hyprland.org/Configuring/Variables/ for more
2022-12-23 12:39:24 +01:00
rounding = 3
2023-08-17 16:26:21 +02:00
blur {
enabled = ${boolToString cfg.blur}
size = 3
passes = 3
new_optimizations = on
}
2022-11-26 16:02:02 +01:00
2023-08-17 16:26:21 +02:00
drop_shadow = ${boolToString cfg.shadows}
2022-12-23 12:39:24 +01:00
shadow_range = 10
shadow_render_power = 2
# col.shadow = rgba(1a1a1aee)
2022-11-26 16:02:02 +01:00
}
animations {
enabled = yes
# see https://wiki.hyprland.org/Configuring/Animations/ for more
2022-11-26 16:02:02 +01:00
2023-02-20 19:07:19 +01:00
bezier = sine, 0.445, 0.05, 0.55, 0.95
bezier = quad, 0.455, 0.03, 0.515, 0.955
bezier = cubic, 0.68, -0.55, 0.265, 1.55
bezier = quart, 0.77, 0, 0.175, 1
bezier = quint, 0.86, 0, 0.07, 1
bezier = expo, 1, 0, 0, 1
bezier = circ, 0.785, 0.135, 0.15, 0.86
bezier = back, 0.68, -0.55, 0.265, 1.55
2023-03-11 17:02:11 +01:00
animation = windows, 1, 4, default, slide
animation = windowsIn, 1, 4, circ, slide
animation = windowsOut, 1, 4, circ, slide
2023-02-20 19:07:19 +01:00
animation = border, 1, 2, sine
2023-03-11 17:02:11 +01:00
animation = fade, 1, 4, sine
animation = workspaces, 1, 5, circ, slidevert
2022-11-26 16:02:02 +01:00
}
dwindle {
# See https://wiki.hyprland.org/Configuring/Dwindle-Layout/ for more
pseudotile = yes # master switch for pseudotiling. Enabling is bound to mainMod + P in the keybinds section below
preserve_split = yes # you probably want this
no_gaps_when_only = true
}
master {
# See https://wiki.hyprland.org/Configuring/Master-Layout/ for more
no_gaps_when_only = true
2022-12-23 12:39:24 +01:00
new_is_master = false
2022-11-26 16:02:02 +01:00
}
gestures {
# See https://wiki.hyprland.org/Configuring/Variables/ for more
workspace_swipe = on
}
2023-09-22 10:14:12 +02:00
misc {
vrr = 1
mouse_move_enables_dpms = true
key_press_enables_dpms = true
2023-10-10 11:53:01 +02:00
force_default_wallpaper = 0
2023-09-22 10:14:12 +02:00
}
2022-11-26 16:02:02 +01:00
# See https://wiki.hyprland.org/Configuring/Window-Rules/ for more
2022-12-23 12:39:24 +01:00
# Firefox Sharing Indicator
${mkRules ["float" "move 49% 40" "noborder" "nofullscreenrequest"] ["title:^(.*Sharing Indicator.*)$"]}
2022-12-23 12:39:24 +01:00
2023-01-03 17:56:02 +01:00
# Emacs
windowrulev2 = opaque, class:^(emacs)$
2022-12-23 12:39:24 +01:00
2023-01-03 17:56:02 +01:00
# Fullscreen Applications
2023-03-02 09:13:46 +01:00
${mkRules ["opaque" "noblur" "noborder" "noshadow" "forceinput"] ["fullscreen:1"]}
2022-11-26 16:02:02 +01:00
${mkRules ["tile" "opaque"] ["class:^(neovide)$"]}
2023-01-26 10:55:27 +01:00
# fix xwayland apps
windowrulev2 = rounding 0, xwayland:1, floating:1
windowrulev2 = center, class:^(.*jetbrains.*)$, title:^(Confirm Exit|Open Project|win424|win201|splash)$
windowrulev2 = size 640 400, class:^(.*jetbrains.*)$, title:^(splash)$
${mkRules ["opaque" "noshadow" "noblur" "noanim" "move cursor 5 5"] ["class:^(.*jetbrains-.*)$"]}
2023-03-02 09:13:46 +01:00
2022-11-26 16:02:02 +01:00
# See https://wiki.hyprland.org/Configuring/Keywords/ for more
$mainMod = SUPER
$windowMod = ALT
# Example binds, see https://wiki.hyprland.org/Configuring/Binds/ for more
2023-02-23 13:34:59 +01:00
# Window binds
bind = $mainMod , F , togglefloating ,
bind = $mainMod , P , pseudo ,
bind = $mainMod , Q , killactive ,
bind = $mainMod , T , togglesplit ,
bind = $mainMod SHIFT , F , fullscreen ,
2023-02-23 13:34:59 +01:00
# Program binds
bind = $mainMod , B , exec , rofi-bluetooth
bind = $mainMod , C , exec , rofi -show calc -modi calc -no-show-match -no-sort | wl-copy
bind = $mainMod , D , exec , hyprctl keyword general:layout dwindle
bind = $mainMod , M , exec , hyprctl keyword general:layout master
bind = $mainMod , R , exec , rofi -show combi
bind = $mainMod , RETURN , exec , kitty
bind = $mainMod SHIFT , RETURN , exec , kitty -- tmux new -A -s home
2023-02-23 13:34:59 +01:00
# XF86 keys
binde = , XF86AudioLowerVolume , exec , pamixer -d 5
binde = , XF86AudioRaiseVolume , exec , pamixer -i 5
bind = , XF86AudioMute , exec , pamixer -t
bind = , XF86AudioNext , exec , playerctl -p "spotifyd,firefox" next
bind = , XF86AudioPlay , exec , playerctl -p "spotifyd,firefox" play-pause
bind = , XF86AudioPrev , exec , playerctl -p "spotifyd,firefox" previous
2022-11-26 16:02:02 +01:00
# Move focus with mainMod + hjkl
binde = $mainMod , H , movefocus , l
binde = $mainMod , L , movefocus , r
binde = $mainMod , K , movefocus , u
binde = $mainMod , J , movefocus , d
2022-11-26 16:02:02 +01:00
2023-02-23 13:34:59 +01:00
# Change current active window size with mainMod + SHIFT + hjkl
binde = $mainMod SHIFT , H , resizeactive , -10 0
binde = $mainMod SHIFT , J , resizeactive , 0 10
binde = $mainMod SHIFT , K , resizeactive , 0 -10
binde = $mainMod SHIFT , L , resizeactive , 10 0
2023-02-23 13:34:59 +01:00
# Move current active window with mainMod + ALT + hjkl
bind = $mainMod ALT , H , movewindow , l
bind = $mainMod ALT , J , movewindow , d
bind = $mainMod ALT , K , movewindow , u
bind = $mainMod ALT , L , movewindow , r
2023-01-03 17:56:02 +01:00
2022-11-26 16:02:02 +01:00
# Switch workspaces with mainMod + [0-9]
bind = $mainMod , 1 , workspace , 1
bind = $mainMod , 2 , workspace , 2
bind = $mainMod , 3 , workspace , 3
bind = $mainMod , 4 , workspace , 4
bind = $mainMod , 5 , workspace , 5
bind = $mainMod , 6 , workspace , 6
bind = $mainMod , 7 , workspace , 7
bind = $mainMod , 8 , workspace , 8
bind = $mainMod , 9 , workspace , 9
bind = $mainMod , 0 , workspace , 10
2022-11-26 16:02:02 +01:00
# Move active window to a workspace with mainMod + SHIFT + [0-9]
bind = $mainMod SHIFT , 1 , movetoworkspace , 1
bind = $mainMod SHIFT , 2 , movetoworkspace , 2
bind = $mainMod SHIFT , 3 , movetoworkspace , 3
bind = $mainMod SHIFT , 4 , movetoworkspace , 4
bind = $mainMod SHIFT , 5 , movetoworkspace , 5
bind = $mainMod SHIFT , 6 , movetoworkspace , 6
bind = $mainMod SHIFT , 7 , movetoworkspace , 7
bind = $mainMod SHIFT , 8 , movetoworkspace , 8
bind = $mainMod SHIFT , 9 , movetoworkspace , 9
bind = $mainMod SHIFT , 0 , movetoworkspace , 10
2022-11-26 16:02:02 +01:00
# Scroll through existing workspaces with mainMod + scroll
bind = $mainMod , mouse_down , workspace , e+1
bind = $mainMod , mouse_up , workspace , e-1
2022-11-26 16:02:02 +01:00
# Move/resize windows with mainMod + LMB/RMB and dragging
bindm = $mainMod , mouse:272 , movewindow
bindm = $mainMod , mouse:273 , resizewindow
2023-09-22 10:14:12 +02:00
# Toggle waybar
bindr = $mainMod , SUPER_L , exec , pkill -USR1 waybar
2023-09-22 10:14:12 +02:00
# Extra Config
${cfg.extraConfig}
2022-11-26 16:02:02 +01:00
''