2021-04-21 14:52:27 +02:00
|
|
|
# =====GENERAL=====
|
|
|
|
# Main modifier; Mod1 is alt
|
2022-01-18 22:15:13 +01:00
|
|
|
set $mod Mod1
|
2021-04-21 14:52:27 +02:00
|
|
|
|
|
|
|
# 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
|
|
|
|
|
2022-04-26 08:43:47 +02:00
|
|
|
# Include all other configuration files
|
|
|
|
include conf.d/*.conf
|
2021-04-21 14:52:27 +02:00
|
|
|
|
|
|
|
# =====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
|