mirror of
https://github.com/ItsDrike/dotfiles.git
synced 2024-12-25 04:34:35 +00:00
Rewrite various parts of hyprland configuration
This commit is contained in:
parent
2bf70e652a
commit
4049a59628
|
@ -34,17 +34,15 @@ exec-once=hyprctl plugin load $HOME/.local/share/hyprload/plugins/bin/dwindle-au
|
|||
#########################
|
||||
|
||||
general {
|
||||
border_size = 2
|
||||
gaps_in = 5
|
||||
gaps_out = 8
|
||||
border_size = 2
|
||||
|
||||
#col.active_border = 0xFF327BD1 # blue
|
||||
col.active_border = 0xFFFFA500 # orange
|
||||
# col.inactive_border = 0xFF000000 # black
|
||||
col.inactive_border = 0xAA444444 # gray
|
||||
col.active_border = rgba(FFA500FF) # orange
|
||||
col.inactive_border = rgba(666666AA) # transparent gray
|
||||
|
||||
col.group_border=0xAA5AA500
|
||||
col.group_border_active=0xFF00A500
|
||||
col.nogroup_border_active = rgba(FF00FFFF) # purple
|
||||
col.nogroup_border = rgba(FF00FFAA) # transparent purple
|
||||
|
||||
# cursor_inactive_timeout = 10
|
||||
# no_cursor_warps = true
|
||||
|
@ -55,24 +53,24 @@ general {
|
|||
decoration {
|
||||
rounding = 8
|
||||
|
||||
blur {
|
||||
enabled = true
|
||||
size = 3
|
||||
passes = 2
|
||||
new_optimizations = true
|
||||
}
|
||||
#inactive_opacity = 1.0
|
||||
|
||||
#dim_inactive = true
|
||||
dim_strength = 0.05
|
||||
dim_special = 0.2
|
||||
|
||||
drop_shadow = true
|
||||
shadow_range = 20
|
||||
shadow_render_power = 2
|
||||
shadow_ignore_window = true
|
||||
shadow_offset = [0 0]
|
||||
col.shadow = 0xE60F0F0F
|
||||
# col.shadow = 0xFFFFA500
|
||||
col.shadow_inactive = 0x990F0F0F
|
||||
col.shadow = rgba(0F0F0FE6)
|
||||
#col.shadow = rgba(FFA500FF)
|
||||
col.shadow_inactive = rgba(0F0F0F99)
|
||||
|
||||
dim_inactive = false
|
||||
dim_strength = 0.05
|
||||
blur {
|
||||
enabled = true
|
||||
size = 8
|
||||
passes = 1
|
||||
}
|
||||
}
|
||||
|
||||
animations {
|
||||
|
@ -103,9 +101,45 @@ gestures {
|
|||
workspace_swipe_cancel_ratio = 0.650000
|
||||
}
|
||||
|
||||
group {
|
||||
insert_after_current = true
|
||||
focus_removed_window = true
|
||||
|
||||
col.border_active = rgba(00A500FF) # green
|
||||
col.border_inactive = rgba(5AA500FF) # transparent green
|
||||
|
||||
col.border_locked_active = rgba(A0A500FF) # yellow
|
||||
col.border_locked_inactive = rgba(A0A500AA) # transparent yellow
|
||||
|
||||
groupbar {
|
||||
scrolling = false
|
||||
|
||||
render_titles = true
|
||||
font_size = 8
|
||||
text_color = rgba(FFFFFFFF) # white
|
||||
|
||||
gradients = true
|
||||
|
||||
col.active = rgba(FFA500FF) # light orange
|
||||
col.inactive = rgba(00A500AA) # transparent green
|
||||
|
||||
col.locked_active = rgba(FF8000FF) # dark orange
|
||||
col.locked_inactive = rgba(A0A500AA) # transparent yello
|
||||
}
|
||||
}
|
||||
|
||||
misc {
|
||||
disable_hyprland_logo = true
|
||||
disable_splash_rendering = true
|
||||
disable_hyprland_logo = true
|
||||
disable_splash_rendering = false
|
||||
|
||||
animate_manual_resizes = true
|
||||
|
||||
# follow requests from windows to be focused
|
||||
focus_on_activate = true
|
||||
}
|
||||
|
||||
debug {
|
||||
overlay = false
|
||||
}
|
||||
|
||||
dwindle {
|
||||
|
|
Loading…
Reference in a new issue