Skip to content

Commit

Permalink
hyprland: breaking changes in config
Browse files Browse the repository at this point in the history
Signed-off-by: clux <sszynrae@gmail.com>
  • Loading branch information
clux committed Jan 20, 2025
1 parent 87fcd9f commit 7468b4d
Showing 1 changed file with 20 additions and 6 deletions.
26 changes: 20 additions & 6 deletions config/hypr/hyprland.conf
Original file line number Diff line number Diff line change
Expand Up @@ -82,11 +82,13 @@ decoration {
ignore_opacity = true
}
blurls = lockscreen
drop_shadow = yes
shadow_range = 10
shadow_render_power = 3
#col.shadow = rgba(1a1a1aee)
col.shadow = $lavender
shadow {
enabled = yes
range = 10
render_power = 3
#color = rgba(1a1a1aee)
color = $lavender
}

# don't dim modal terminal
dim_special = 0
Expand Down Expand Up @@ -115,7 +117,6 @@ dwindle {
# https://wiki.hyprland.org/Configuring/Dwindle-Layout/
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 = 1
special_scale_factor = 1 # maximize special workspace
}

Expand All @@ -128,6 +129,11 @@ misc {
disable_hyprland_logo = true
disable_splash_rendering = true
}
ecosystem {
# https://wiki.hyprland.org/Configuring/Variables/#ecosystem
no_update_news = true
#no_donation_nag = true
}

# ---------------------------------------------------------
# RULES + BINDS
Expand Down Expand Up @@ -183,6 +189,14 @@ windowrulev2 = noshadow, class:^Alacritty$
windowrulev2 = noinitialfocus, class:^Alacritty$
windowrulev2 = bordercolor rgba(a6e3a1ee), class:^Alacritty$

# remove gaps when only one window on most workspaces
workspace = w[tv1], gapsout:0, gapsin:0
workspace = f[1], gapsout:0, gapsin:0
windowrulev2 = bordersize 0, floating:0, onworkspace:w[tv1]
windowrulev2 = rounding 0, floating:0, onworkspace:w[tv1]
windowrulev2 = bordersize 0, floating:0, onworkspace:f[1]
windowrulev2 = rounding 0, floating:0, onworkspace:f[1]

# See https://wiki.hyprland.org/Configuring/Keywords/ for more
$mainMod = SUPER
# ALT as mainmod would be nice to align yabai + hyprland, but this ends ups triggering lang change, how does mac avoid this?
Expand Down

0 comments on commit 7468b4d

Please sign in to comment.