i3 config

This commit is contained in:
Jef Roosens 2025-01-28 11:10:39 +01:00
parent 84afb34cee
commit 3b8ef2383f
Signed by: Jef Roosens
GPG key ID: 21FD3D77D56BAF49
24 changed files with 1626 additions and 0 deletions

View file

@ -0,0 +1,40 @@
# =====GENERAL=====
# Main modifier; Mod1 is alt, Mod4 is Cmd/Windows
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
# Size of gaps between windows
gaps inner 20
gaps outer 10
# 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