[i3config] Rename color variables

This commit is contained in:
Benedikt Heine 2018-10-27 18:58:15 +02:00 committed by Felix Buehler
parent 0a5d037573
commit 41a23ea8b4

View file

@ -233,36 +233,38 @@ mode "passthrough" {
bindsym Mod4+Escape mode "passthrough" bindsym Mod4+Escape mode "passthrough"
# colors # colors
set $bg-color #2F343F set $color_bg #2F343F
set $inactive-bg-color #2F343F set $color_bg_inactive #2F343F
set $text-color #F3F4F5 set $color_text #F3F4F5
set $inactive-text-color #676E7D set $color_text_inactive #676E7D
set $urgent-bg-color #E53935 set $color_bg_urgent #E53935
set $indicator-color #00FF00 set $color_indicator #00FF00
set $workspace-color #5294E2 set $color_separator #666666
set $inactive-workspace #2F343F set $color_ws #5294E2
set $seperator-color #666666 set $color_ws_inactive #2F343F
set $ws-text-color #FFFFFF set $color_ws_text #FFFFFF
set $ws-inactive-text-color #D3DAE3 set $color_ws_text_inactive #D3DAE3
# window colors # window colors
client.focused $bg-color $bg-color $text-color $indicator-color client.focused $color_bg $color_bg $color_text $color_indicator
client.unfocused $inactive-bg-color $inactive-bg-color $inactive-text-color $indicator-color client.unfocused $color_bg_inactive $color_bg_inactive $color_text_inactive $color_indicator
client.focused_inactive $inactive-bg-color $inactive-bg-color $inactive-text-color $indicator-color client.focused_inactive $color_bg_inactive $color_bg_inactive $color_text_inactive $color_indicator
client.urgent $urgent-bg-color $urgent-bg-color $text-color $indicator-color client.urgent $color_bg_urgent $color_bg_urgent $color_text $color_indicator
bar { bar {
status_command i3status status_command i3status
position top position top
workspace_buttons yes workspace_buttons yes
colors { tray_output primary
background $bg-color tray_padding 1
statusline $ws-inactive-text-color colors {
separator $seperator-color background $color_bg
focused_workspace $workspace-color $workspace-color $ws-text-color statusline $color_ws_text_inactive
active_workspace $inactive-workspace $inactive-workspace $ws-inactive-text-color separator $color_separator
inactive_workspace $inactive-workspace $inactive-workspace $ws-inactive-text-color focused_workspace $color_ws $color_ws $color_ws_text
urgent_workspace $urgent-bg-color $urgent-bg-color $ws-text-color active_workspace $color_ws_inactive $color_ws_inactive $color_ws_text_inactive
} inactive_workspace $color_ws_inactive $color_ws_inactive $color_ws_text_inactive
urgent_workspace $color_bg_urgent $color_bg_urgent $color_ws_text
}
} }