mirror of
				https://github.com/ItsDrike/dotfiles.git
				synced 2025-10-31 07:56:36 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			130 lines
		
	
	
	
		
			2.7 KiB
		
	
	
	
		
			Text
		
	
	
	
	
	
			
		
		
	
	
			130 lines
		
	
	
	
		
			2.7 KiB
		
	
	
	
		
			Text
		
	
	
	
	
	
| # ###################
 | |
| # ### WINDOW GAPS ###
 | |
| # ###################
 | |
| 
 | |
| general {
 | |
|   gaps_in = 5
 | |
|   gaps_out = 8
 | |
| }
 | |
| 
 | |
| # ###############
 | |
| # ### BORDERS ###
 | |
| # ###############
 | |
| 
 | |
| decoration {
 | |
|     rounding = 8
 | |
| }
 | |
| 
 | |
| general {
 | |
|   border_size = 2
 | |
| 
 | |
|   # Regular windows
 | |
|   col.active_border = rgba(FFA500FF)  # orange
 | |
|   #col.active_border = rgba(FFFFFFEE) # white
 | |
|   col.inactive_border = rgba(666666AA)  # transparent gray
 | |
| 
 | |
|   # Windows with nogroup property
 | |
|   col.nogroup_border_active = rgba(FF00FFFF)  # purple
 | |
|   col.nogroup_border = rgba(FF00FFAA)  # transparent purple
 | |
| }
 | |
| 
 | |
| group {
 | |
|     # Groupped windows
 | |
|     col.border_active = rgba(00A500FF)  # green
 | |
|     col.border_inactive = rgba(5AA500FF)  # transparent green
 | |
| 
 | |
|     # Locked groupped windows
 | |
|     col.border_locked_active = rgba(A0A500FF)  # yellow
 | |
|     col.border_locked_inactive = rgba(A0A500AA)  # transparent yellow
 | |
| }
 | |
| 
 | |
| # #################
 | |
| # ### GROUP BAR ###
 | |
| # #################
 | |
| 
 | |
| group {
 | |
|     groupbar {
 | |
|         # Title box above window
 | |
|         render_titles = false # disable, looks kinda bad
 | |
|         font_family = Monaspace Krypton
 | |
|         font_size = 11
 | |
|         text_color = rgba(FFFFFFFF) # white
 | |
| 
 | |
|         # Gradients should be enabled only if title rendering is also enabled
 | |
|         # on their own, they look really bad
 | |
|         gradients = false
 | |
| 
 | |
|         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 yellow
 | |
| 
 | |
|         # Scrolling in the groupbar shouldn't change the active window
 | |
|         scrolling = false
 | |
|     }
 | |
| }
 | |
| 
 | |
| # ###################
 | |
| # ### DROP SHADOW ###
 | |
| # ###################
 | |
| 
 | |
| decoration {
 | |
|     shadow {
 | |
|         enabled = true # enable drop shadow
 | |
|         range = 20
 | |
|         render_power = 2
 | |
|         color = rgba(0F0F0FE6)
 | |
|         #color = rgba(FFA500FF)
 | |
|         color_inactive = rgba(0F0F0F99)
 | |
|     }
 | |
| }
 | |
| 
 | |
| # ###################
 | |
| # ### WINDOW BLUR ###
 | |
| # ###################
 | |
| 
 | |
| decoration {
 | |
|     blur {
 | |
|         enabled = true
 | |
|         size = 8
 | |
|         passes = 1
 | |
|     }
 | |
| }
 | |
| 
 | |
| # ########################
 | |
| # ### INACTIVE WINDOWS ###
 | |
| # ########################
 | |
| 
 | |
| decoration {
 | |
|     #dim_inactive = true
 | |
|     dim_strength = 0.05
 | |
|     dim_special = 0.2
 | |
| 
 | |
|     # inactive_opacity = 0.9
 | |
| }
 | |
| 
 | |
| # ##################
 | |
| # ### ANIMATIONS ###
 | |
| # ##################
 | |
| 
 | |
| animations {
 | |
|     enabled = true
 | |
|     first_launch_animation = true # fade in on first launch
 | |
| 
 | |
|     animation = windows, 1, 3, default, popin 50%
 | |
|     animation = border, 1, 4, default
 | |
|     animation = fade, 1, 4, default
 | |
|     animation = workspaces, 1, 3, default
 | |
|     animation = specialWorkspace, 1, 2, default, slidefadevert
 | |
| }
 | |
| 
 | |
| misc {
 | |
|     animate_manual_resizes = true
 | |
| }
 | |
| 
 | |
| # #################
 | |
| # ### WALLPAPER ###
 | |
| # #################
 | |
| 
 | |
| # vi: ft=hyprlang
 |