Regenerated

This commit is contained in:
2026-04-01 22:23:33 +02:00
parent c6a7f62403
commit 211f49deab
4 changed files with 354 additions and 389 deletions
+316 -327
View File
File diff suppressed because it is too large Load Diff
+19 -30
View File
@@ -1804,17 +1804,7 @@ These are config files for .config/hypr
# Keyboard and mouse settings # Keyboard and mouse settings
# Scrolling modifier settings # Scrolling modifier settings
# Touchpad settings (applies to all touchpads) # Touchpad settings (applies to all touchpads)
input:touchpad: * {
natural_scroll = yes
scroll_factor = 0.5
}
# Focus settings # Focus settings
focus {
follow_mouse = yes
new_windows = smart
}
# Miscellaneous settings # Miscellaneous settings
#+END_SRC #+END_SRC
@@ -2201,30 +2191,29 @@ decoration {
** =.config/hypr/window-rules.conf= ** =.config/hypr/window-rules.conf=
These are config files for .config/hypr These are config files for .config/hypr
#+BEGIN_SRC conf :tangle generated/.config/hypr/window-rules.conf :noweb yes :mkdirp yes :eval never #+BEGIN_SRC conf :tangle generated/.config/hypr/window-rules.conf :noweb yes :mkdirp yes :eval never
# Floating and centering nm-connection-editor
windowrule = float, nm-connection-editor
windowrule = move center, nm-connection-editor
windowrule = size 900 700, nm-connection-editor
# Floating and centering pavucontrol # Multiple apps floating, opening near cursor, with specific size
windowrule = float, pavucontrol windowrule {
windowrule = move center, pavucontrol float = true
windowrule = size 900 700, pavucontrol move = cursor
size = 900 700
match:class = nm-connection-editor
}
# Floating and centering blueman windowrule {
windowrule = float, blueman float = true
windowrule = move center, blueman move = cursor
windowrule = size 900 700, blueman size = 900 700
match:class = Pavucontrol
}
# Make Wofi windows blurred windowrule {
windowrulev2 = floatclass:Wofi,blur:15 float = true
windowrulev2 = floatclass:Wofi,floating:true move = cursor
windowrulev2 = floatclass:Wofi,opacity:0.9,blur:15 size = 900 700
match:class = Blueman-manager
}
# Move specific apps to workspaces automatically
#windowrule = move workspace 1, ^(kitty)$
#windowrule = move workspace 2, ^(zen)$
#windowrule = move workspace 3, ^(betterbird)$
#+END_SRC #+END_SRC
** =.config/hypr/workspace-rules.conf= ** =.config/hypr/workspace-rules.conf=
@@ -1,15 +1,5 @@
# Keyboard and mouse settings # Keyboard and mouse settings
# Scrolling modifier settings # Scrolling modifier settings
# Touchpad settings (applies to all touchpads) # Touchpad settings (applies to all touchpads)
input:touchpad: * {
natural_scroll = yes
scroll_factor = 0.5
}
# Focus settings # Focus settings
focus {
follow_mouse = yes
new_windows = smart
}
# Miscellaneous settings # Miscellaneous settings
@@ -1,24 +1,21 @@
# Floating and centering nm-connection-editor # Multiple apps floating, opening near cursor, with specific size
windowrule = float, nm-connection-editor windowrule {
windowrule = move center, nm-connection-editor float = true
windowrule = size 900 700, nm-connection-editor move = cursor
size = 900 700
match:class = nm-connection-editor
}
# Floating and centering pavucontrol windowrule {
windowrule = float, pavucontrol float = true
windowrule = move center, pavucontrol move = cursor
windowrule = size 900 700, pavucontrol size = 900 700
match:class = Pavucontrol
}
# Floating and centering blueman windowrule {
windowrule = float, blueman float = true
windowrule = move center, blueman move = cursor
windowrule = size 900 700, blueman size = 900 700
match:class = Blueman-manager
# Make Wofi windows blurred }
windowrulev2 = floatclass:Wofi,blur:15
windowrulev2 = floatclass:Wofi,floating:true
windowrulev2 = floatclass:Wofi,opacity:0.9,blur:15
# Move specific apps to workspaces automatically
#windowrule = move workspace 1, ^(kitty)$
#windowrule = move workspace 2, ^(zen)$
#windowrule = move workspace 3, ^(betterbird)$