Configure i3 and i3bar colors.
This commit is contained in:
parent
f9cb821173
commit
0a32e075d4
|
@ -44,10 +44,21 @@ workspace $ws4 gaps inner 10
|
||||||
|
|
||||||
# Configuration for i3bar.
|
# Configuration for i3bar.
|
||||||
bar {
|
bar {
|
||||||
output primary # Only output to the primary display.
|
colors {
|
||||||
position bottom # Position at the bottom of the screen.
|
background #00000000
|
||||||
status_command i3status-rs # Use i3status-rust for the status contents.
|
statusline #F2EFFF
|
||||||
tray_output primary # Show tray icons on the primary display.
|
separator #D2B83A
|
||||||
|
focused_workspace #E6DEFF #E6DEFF #1F1731
|
||||||
|
active_workspace #D2B83A #D2B83A #1F1731
|
||||||
|
inactive_workspace #2A2041 #1F1731 #E6DEFF
|
||||||
|
urgent_workspace #F99ADD #F99ADD #1F1731
|
||||||
|
}
|
||||||
|
i3bar_command i3bar --transparency
|
||||||
|
output primary
|
||||||
|
position bottom
|
||||||
|
separator_symbol "/"
|
||||||
|
status_command i3status-rs
|
||||||
|
tray_output primary
|
||||||
}
|
}
|
||||||
|
|
||||||
# Assign clients to specific workspaces.
|
# Assign clients to specific workspaces.
|
||||||
|
@ -60,5 +71,5 @@ assign [class="Standard Notes"] $ws2
|
||||||
assign [class="Transmission-gtk"] $ws3
|
assign [class="Transmission-gtk"] $ws3
|
||||||
assign [class="KeePassXC"] $ws3
|
assign [class="KeePassXC"] $ws3
|
||||||
|
|
||||||
# Include the keybinds file.
|
|
||||||
include keybinds.conf
|
include keybinds.conf
|
||||||
|
include theme.conf
|
||||||
|
|
|
@ -0,0 +1,4 @@
|
||||||
|
client.focused #2A204188 #2A2041DD #F2EFFF #F2EFFF #2A204188
|
||||||
|
client.focused_inactive #1F1731BB #1F1731BB #E6DEFF #E6DEFF #1F1731BB
|
||||||
|
client.unfocused #1F173188 #1F173188 #E6DEFF #E6DEFF #1F173188
|
||||||
|
client.urgent #F99ADD #F99ADD #1F1731 #1F1731 #F99ADD
|
Loading…
Reference in New Issue