37 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			Plaintext
		
	
	
		
			Executable File
		
	
			
		
		
	
	
			37 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			Plaintext
		
	
	
		
			Executable File
		
	
| # =====GENERAL=====
 | |
| # Main modifier; Mod1 is alt
 | |
| set $mod Mod1
 | |
| 
 | |
| # Modifier for floating-related operations
 | |
| floating_modifier $mod
 | |
| 
 | |
| # Layout for new workspaces; default means tiling
 | |
| workspace_layout default
 | |
| 
 | |
| #do not show titlebar on windows: 
 | |
| default_border pixel
 | |
| 
 | |
| # thin borders
 | |
| hide_edge_borders both
 | |
| 
 | |
| # Font for window titles & bar, unless specified otherwise
 | |
| font pango:Noto Sans Regular 8
 | |
| 
 | |
| # Include all other configuration files
 | |
| include conf.d/*.conf
 | |
| 
 | |
| # =====COLORS=====
 | |
| set $bg-color            #2f343f
 | |
| set $inactive-bg-color   #2f343f
 | |
| set $text-color          #f3f4f5
 | |
| set $inactive-text-color #676e7d
 | |
| set $urgent-bg-color     #e53935
 | |
| set $indicator-color     #a0a0a0
 | |
| 
 | |
| # set window colors
 | |
| #                       border             background         text                 indicator
 | |
| client.focused          $bg-color          $bg-color          $text-color          $indicator-color
 | |
| client.unfocused        $inactive-bg-color $inactive-bg-color $inactive-text-color $indicator-color
 | |
| client.focused_inactive $inactive-bg-color $inactive-bg-color $inactive-text-color $indicator-color
 | |
| client.urgent           $urgent-bg-color   $urgent-bg-color   $text-color          $indicator-color
 |