2023-09-24 10:29:51 +01:00
|
|
|
{ config, pkgs, theme, ... }:
|
|
|
|
let cursorSize = 24;
|
|
|
|
in ''
|
2023-09-07 09:26:16 +01:00
|
|
|
source = ${theme}
|
2023-09-04 08:53:41 +01:00
|
|
|
source = ./extra.conf
|
2023-08-22 09:44:40 +01:00
|
|
|
monitor=,preferred,auto,auto
|
|
|
|
|
2023-09-24 10:29:51 +01:00
|
|
|
exec-once = hyprctl setcursor ${config.gtk.cursorTheme.name} ${
|
|
|
|
toString cursorSize
|
|
|
|
}
|
|
|
|
|
2023-08-22 09:44:40 +01:00
|
|
|
env = XDG_CURRENT_DESKTOP=Hyprland
|
|
|
|
env = XDG_SESSION_TYPE=wayland
|
|
|
|
env = XDG_SESSION_DESKTOP=Hyprland
|
|
|
|
env = GDK_BACKEND=wayland,x11
|
2023-09-07 09:22:22 +01:00
|
|
|
env = GTK_THEME,${config.gtk.theme.name}
|
|
|
|
env = XCURSOR_THEME,${config.gtk.cursorTheme.name}
|
2023-09-24 10:29:51 +01:00
|
|
|
env = XCURSOR_SIZE,${toString cursorSize}
|
|
|
|
env = QT_AUTO_SCREEN_SCALE_FACTOR,1
|
|
|
|
env = QT_QPA_PLATFORM,wayland
|
|
|
|
env = QT_WAYLAND_DISABLE_WINDOWDECORATION,1
|
|
|
|
env = MOZ_ENABLE_WAYLAND,1
|
2023-09-13 06:17:51 +01:00
|
|
|
env = DOOMLOCALDIR=${config.home.sessionVariables.DOOMLOCALDIR};
|
|
|
|
env = DOOMPROFILELOADFILE=${config.home.sessionVariables.DOOMPROFILELOADFILE};
|
|
|
|
|
2023-09-24 10:29:51 +01:00
|
|
|
misc {
|
|
|
|
disable_autoreload = true
|
|
|
|
vrr = 2
|
|
|
|
}
|
|
|
|
|
|
|
|
gestures {
|
|
|
|
workspace_swipe = true
|
|
|
|
}
|
|
|
|
|
2023-08-22 09:44:40 +01:00
|
|
|
input {
|
|
|
|
kb_layout = gb
|
|
|
|
follow_mouse = 1
|
|
|
|
touchpad {
|
|
|
|
natural_scroll = yes
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
general {
|
|
|
|
gaps_in = 5
|
|
|
|
gaps_out = 10
|
2023-09-24 10:29:51 +01:00
|
|
|
border_size = 1
|
2023-09-11 17:22:14 +01:00
|
|
|
col.active_border = $lavender
|
|
|
|
col.group_border_active = $lavender
|
2023-08-22 09:44:40 +01:00
|
|
|
col.inactive_border = $surface2
|
|
|
|
col.group_border = $surface2
|
|
|
|
cursor_inactive_timeout = 5
|
|
|
|
layout = dwindle
|
|
|
|
}
|
|
|
|
|
|
|
|
dwindle {
|
|
|
|
force_split = 2
|
|
|
|
preserve_split = true
|
|
|
|
}
|
|
|
|
|
|
|
|
decoration {
|
|
|
|
rounding = 10
|
|
|
|
drop_shadow = yes
|
2023-09-24 10:29:51 +01:00
|
|
|
shadow_ignore_window = true
|
2023-08-22 09:44:40 +01:00
|
|
|
shadow_range = 4
|
|
|
|
shadow_render_power = 3
|
|
|
|
blur {
|
|
|
|
enabled = true
|
|
|
|
size = 5
|
|
|
|
passes = 3
|
2023-09-24 10:29:51 +01:00
|
|
|
new_optimizations = true
|
|
|
|
brightness = 1.0
|
|
|
|
noise = 0.02
|
2023-08-22 09:44:40 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-09-24 11:49:05 +01:00
|
|
|
$layers = ^(eww-.+|waybar|bar|system-menu|anyrun|gtk-layer-shell|swaync-.+)$
|
2023-09-24 10:29:51 +01:00
|
|
|
layerrule = blur, $layers
|
|
|
|
layerrule = ignorealpha 0, $layers
|
2023-09-24 11:49:05 +01:00
|
|
|
layerrule = ignorealpha 0.5, ^(eww-(music|calendar)|waybar|system-menu|anyrun|swaync-.+)$
|
2023-09-24 10:29:51 +01:00
|
|
|
layerrule = xray 1, ^(bar|gtk-layer-shell)$
|
|
|
|
|
2023-08-22 09:44:40 +01:00
|
|
|
animations {
|
|
|
|
enabled = yes
|
2023-09-24 17:00:25 +01:00
|
|
|
bezier = myBezier, 0, 0, 0.58, 1
|
2023-08-22 09:44:40 +01:00
|
|
|
animation = windows, 1, 7, myBezier
|
|
|
|
animation = windowsOut, 1, 7, default, popin 80%
|
|
|
|
animation = border, 1, 10, default
|
|
|
|
animation = borderangle, 1, 8, default
|
|
|
|
animation = fade, 1, 7, default
|
|
|
|
animation = workspaces, 1, 6, default
|
|
|
|
}
|
|
|
|
|
|
|
|
XWayland {
|
|
|
|
force_zero_scaling = true
|
|
|
|
}
|
|
|
|
|
|
|
|
# See https://wiki.hyprland.org/Configuring/Keywords/ for more
|
2023-09-11 09:25:17 +01:00
|
|
|
bind = SUPER, F1, exec, swaylock
|
2023-08-22 09:44:40 +01:00
|
|
|
bind = SUPER, M, fullscreen, 0
|
2023-09-11 09:25:17 +01:00
|
|
|
bind = SUPER, P, exec, pkill rofi || rofi-pass
|
|
|
|
bind = SUPER, X, exec, swaync-client -t
|
2023-08-22 12:31:09 +01:00
|
|
|
bind = SUPER SHIFT, M, fullscreen, 1
|
2023-08-22 09:44:40 +01:00
|
|
|
bind = SUPER SHIFT, Q, killactive,
|
|
|
|
bind = SUPER SHIFT, Space, togglefloating
|
2023-09-24 13:05:26 +01:00
|
|
|
bind = SUPER SHIFT, P, exec, wlogout
|
2023-08-22 09:44:40 +01:00
|
|
|
|
|
|
|
# Common program shortcuts
|
2023-09-13 07:30:02 +01:00
|
|
|
bind = SUPER, E, exec, emacsclient -c
|
2023-09-24 10:29:51 +01:00
|
|
|
bind = SUPER, Space, exec, pkill anyrun || anyrun
|
2023-09-11 09:25:17 +01:00
|
|
|
bind = SUPER, Return, exec, alacritty
|
2023-08-23 09:31:52 +01:00
|
|
|
|
2023-09-11 09:25:17 +01:00
|
|
|
bind = SUPER ALT, W, exec, [workspace 2] firefox
|
2023-09-27 07:26:21 +01:00
|
|
|
bind = SUPER ALT, C, exec, [workspace 6] ferdium
|
2023-09-11 09:25:17 +01:00
|
|
|
bind = SUPER ALT, F, exec, [workspace 4] alacritty -e mc
|
|
|
|
bind = SUPER ALT, S, exec, [workspace 5] alacritty -e ncspot
|
2023-08-23 09:31:52 +01:00
|
|
|
|
2023-08-22 09:44:40 +01:00
|
|
|
# Misc useful binds
|
2023-09-11 13:46:52 +01:00
|
|
|
bind=,Print,exec,${pkgs.grim}/bin/grim -g "$(${pkgs.slurp}/bin/slurp)"
|
2023-09-24 10:29:51 +01:00
|
|
|
bind=,XF86Calculator,exec,pkill anyrun || anyrun
|
2023-08-22 09:44:40 +01:00
|
|
|
# Sound
|
2023-09-11 13:46:52 +01:00
|
|
|
bindl=,XF86AudioMute,exec,${pkgs.pamixer}/bin/pamixer -t
|
|
|
|
bindl=,XF86AudioMicMute,exec,${pkgs.pamixer}/bin/pamixer --default-source -t
|
|
|
|
binde=,XF86AudioRaiseVolume,exec,${pkgs.pamixer}/bin/pamixer -i 5
|
|
|
|
binde=,XF86AudioLowerVolume,exec,${pkgs.pamixer}/bin/pamixer -d 5
|
2023-08-22 09:44:40 +01:00
|
|
|
# Brightness
|
2023-09-11 13:46:52 +01:00
|
|
|
binde=,XF86MonBrightnessUp,exec,${pkgs.brightnessctl}/bin/brightnessctl s +5%
|
|
|
|
binde=,XF86MonBrightnessDown,exec,${pkgs.brightnessctl}/bin/brightnessctl s 5%-
|
2023-08-22 09:44:40 +01:00
|
|
|
# Playback
|
2023-09-11 13:46:52 +01:00
|
|
|
binde=,XF86AudioPlay,exec,${pkgs.playerctl}/bin/playerctl play-pause
|
|
|
|
binde=,XF86AudioStop,exec,${pkgs.playerctl}/bin/playerctl play-pause
|
|
|
|
binde=,XF86AudioPrev,exec,${pkgs.playerctl}/bin/playerctl previous
|
|
|
|
binde=,XF86AudioNext,exec,${pkgs.playerctl}/bin/playerctl next
|
2023-08-22 09:44:40 +01:00
|
|
|
|
|
|
|
bind = SUPER, H, movefocus, l
|
|
|
|
bind = SUPER, L, movefocus, r
|
|
|
|
bind = SUPER, K, movefocus, u
|
|
|
|
bind = SUPER, J, movefocus, d
|
|
|
|
bind = SUPER SHIFT, H, movewindow, l
|
|
|
|
bind = SUPER SHIFT, L, movewindow, r
|
|
|
|
bind = SUPER SHIFT, K, movewindow, u
|
|
|
|
bind = SUPER SHIFT, J, movewindow, d
|
|
|
|
|
2023-09-05 12:49:33 +01:00
|
|
|
# Window rules
|
|
|
|
windowrule = float,(pavucontrol)
|
|
|
|
windowrule = size 800 600,(pavucontrol)
|
|
|
|
windowrule = move 100%-820 10%,(pavucontrol)
|
|
|
|
windowrule = float,(.blueman-manager-wrapped)
|
|
|
|
windowrule = size 800 600,(.blueman-manager-wrapped)
|
|
|
|
windowrule = move 100%-820 10%,(.blueman-manager-wrapped)
|
|
|
|
windowrule = float,(nm-connection-editor)
|
|
|
|
windowrule = size 800 600,(nm-connection-editor)
|
|
|
|
windowrule = move 100%-820 10%,(nm-connection-editor)
|
2023-09-26 16:50:22 +01:00
|
|
|
windowrule = float,(.protonvpn-wrapped)
|
|
|
|
windowrule = center,(.protonvpn-wrapped)
|
2023-09-05 17:22:21 +01:00
|
|
|
windowrule = float,(Pinentry)
|
|
|
|
windowrule = center,(Pinentry)
|
2023-09-11 08:28:50 +01:00
|
|
|
windowrule = float,(thunar)
|
|
|
|
windowrule = center,(thunar)
|
2023-09-24 13:05:26 +01:00
|
|
|
windowrule = float,(wlogout)
|
|
|
|
windowrule = size 80% 80%,(wlogout)
|
|
|
|
windowrule = center,(wlogout)
|
|
|
|
windowrule = nofullscreenrequest,(wlogout)
|
|
|
|
windowrule = nomaximizerequest,(wlogout)
|
2023-09-26 11:34:32 +01:00
|
|
|
windowrule = nofullscreenrequest,(Nxplayer.bin)
|
|
|
|
windowrule = nomaximizerequest,(Nxplayer.bin)
|
2023-08-22 09:44:40 +01:00
|
|
|
windowrulev2 = float,title:(File|Picture-in-Picture),class:(firefox)
|
|
|
|
windowrulev2 = pin,title:(File|Picture-in-Picture),class:(firefox)
|
2023-09-24 10:29:51 +01:00
|
|
|
windowrulev2 = workspace special silent, title:^(Firefox — Sharing Indicator)$
|
|
|
|
windowrulev2 = workspace special silent, title:^(.*is sharing (your screen|a window)\.)$
|
2023-08-22 09:44:40 +01:00
|
|
|
windowrulev2 = float,title:(Open),class:(soffice)
|
2023-09-05 12:49:33 +01:00
|
|
|
windowrulev2 = float,class:(steam),title:(Friends List)
|
2023-09-23 07:12:52 +01:00
|
|
|
windowrulev2 = float,class:(steam),title:(Steam Settings)
|
2023-08-22 09:44:40 +01:00
|
|
|
|
2023-09-05 12:49:33 +01:00
|
|
|
# Workspace definitions
|
|
|
|
# 1: [a]ny
|
|
|
|
bind = SUPER, A, moveworkspacetomonitor, 1 current
|
|
|
|
bind = SUPER, A, workspace, 1
|
|
|
|
bind = SUPER SHIFT, A, movetoworkspace, 1
|
|
|
|
|
|
|
|
# 2: [b]rowser
|
|
|
|
bind = SUPER, W, moveworkspacetomonitor, 2 current
|
|
|
|
bind = SUPER, W, workspace, 2
|
|
|
|
bind = SUPER SHIFT, W, movetoworkspace, 2
|
|
|
|
windowrule = workspace 2,(firefox)
|
|
|
|
|
|
|
|
# 3: [d]ev
|
|
|
|
bind = SUPER, D, moveworkspacetomonitor, 3 current
|
|
|
|
bind = SUPER, D, workspace, 3
|
|
|
|
bind = SUPER SHIFT, D, movetoworkspace, 3
|
|
|
|
|
|
|
|
# 4: [f]iles
|
|
|
|
bind = SUPER, F, moveworkspacetomonitor, 4 current
|
|
|
|
bind = SUPER, F, workspace, 4
|
|
|
|
bind = SUPER SHIFT, F, movetoworkspace, 4
|
|
|
|
windowrule = workspace 4,^(libreoffice).*
|
|
|
|
windowrulev2 = workspace 4,title:(Open),class:(soffice)
|
|
|
|
|
|
|
|
# 5: [s]potify (or mu[s]ic)
|
|
|
|
bind = SUPER, S, moveworkspacetomonitor, 5 current
|
|
|
|
bind = SUPER, S, workspace, 5
|
|
|
|
bind = SUPER SHIFT, S, movetoworkspace, 5
|
|
|
|
windowrulev2 = workspace 5,class:(Alacritty),title:(ncspot)
|
|
|
|
|
|
|
|
# 6: [c]hat
|
|
|
|
bind = SUPER, C, moveworkspacetomonitor, 6 current
|
|
|
|
bind = SUPER, C, workspace, 6
|
|
|
|
bind = SUPER SHIFT, C, movetoworkspace, 6
|
|
|
|
windowrule = workspace 6,(Signal)
|
|
|
|
windowrule = workspace 6,(fractal)
|
|
|
|
windowrule = workspace 6,(discord)
|
2023-09-21 08:51:07 +01:00
|
|
|
windowrule = workspace 6,(Ferdium)
|
2023-09-05 12:49:33 +01:00
|
|
|
|
|
|
|
# 7: [v]ideo
|
|
|
|
bind = SUPER, V, moveworkspacetomonitor, 7 current
|
|
|
|
bind = SUPER, V, workspace, 7
|
|
|
|
bind = SUPER SHIFT, V, movetoworkspace, 7
|
|
|
|
|
|
|
|
# 8: [r]emote
|
|
|
|
bind = SUPER, R, moveworkspacetomonitor, 8 current
|
|
|
|
bind = SUPER, R, workspace, 8
|
|
|
|
bind = SUPER SHIFT, R, movetoworkspace, 8
|
2023-09-26 11:34:32 +01:00
|
|
|
windowrule = workspace 8,(Nxplayer.bin)
|
2023-09-05 12:49:33 +01:00
|
|
|
|
|
|
|
# 9: [g]aming
|
|
|
|
bind = SUPER, G, moveworkspacetomonitor, 9 current
|
|
|
|
bind = SUPER, G, workspace, 9
|
|
|
|
bind = SUPER SHIFT, G, movetoworkspace, 9
|
|
|
|
windowrule = workspace 9,(steam)
|
2023-08-22 09:44:40 +01:00
|
|
|
|
|
|
|
# Special workspaces
|
2023-09-11 08:28:50 +01:00
|
|
|
bind = SUPER, comma, workspace, m-1
|
|
|
|
bind = SUPER SHIFT, comma, movetoworkspace, r-1
|
|
|
|
bind = SUPER, period, workspace, m+1
|
|
|
|
bind = SUPER SHIFT, period, movetoworkspace, r+1
|
2023-08-22 09:44:40 +01:00
|
|
|
bind = SUPER, N, workspace, empty
|
|
|
|
bind = SUPER SHIFT, N, movetoworkspace, empty
|
|
|
|
bind = SUPER, minus, togglespecialworkspace
|
|
|
|
bind = SUPER SHIFT, minus, movetoworkspace, special
|
|
|
|
bind = SUPER, tab, workspace, previous
|
|
|
|
bind = SUPER SHIFT, tab, movetoworkspace, previous
|
|
|
|
bind = SUPER, bracketright, focusmonitor, +1
|
|
|
|
bind = SUPER SHIFT, bracketright, movecurrentworkspacetomonitor, +1
|
|
|
|
bind = SUPER, bracketleft, focusmonitor, -1
|
|
|
|
bind = SUPER SHIFT, bracketleft, movecurrentworkspacetomonitor, -1
|
|
|
|
bind = SUPER, U, focusurgentorlast
|
|
|
|
|
|
|
|
# Move/resize windows with mainMod + LMB/RMB and dragging
|
|
|
|
bindm = SUPER, mouse:272, movewindow
|
|
|
|
bindm = SUPER, mouse:273, resizewindow
|
|
|
|
|
2023-09-11 13:46:52 +01:00
|
|
|
exec-once = ${pkgs.waybar}/bin/waybar
|
|
|
|
exec-once = ${pkgs.swaynotificationcenter}/bin/swaync
|
|
|
|
exec-once = ${pkgs.hyprpaper}/bin/hyprpaper
|
|
|
|
exec-once = ${pkgs.protonmail-bridge}/bin/protonmail-bridge -n
|
2023-09-24 07:32:32 +01:00
|
|
|
exec-once = ${pkgs.dex}/bin/dex --autostart
|
2023-09-24 10:59:09 +01:00
|
|
|
exec-once = kidex
|
2023-08-22 09:44:40 +01:00
|
|
|
''
|