Advertisement
Guest User

Untitled

a guest
Nov 12th, 2018
124
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.24 KB | None | 0 0
  1. set $bg-color #2f343f
  2. set $inactive-bg-color #2f343f
  3. set $text-color #f3f4f5
  4. set $inactive-text-color #676e7d
  5. set $urgent-bg-color #e53935
  6. set $indicator-color #a0a0a0
  7.  
  8. # set window colors
  9. # border background text indicator
  10. client.focused $bg-color $bg-color $text-color $indicator-color
  11. client.unfocused $inactive-bg-color $inactive-bg-color $inactive-text-color $indicator-color
  12. client.focused_inactive $inactive-bg-color $inactive-bg-color $inactive-text-color $indicator-color
  13. client.urgent $urgent-bg-color $urgent-bg-color $text-color $indicator-color
  14.  
  15. bar {
  16. position top
  17. wheel_up_cmd nop
  18. wheel_down_cmd nop
  19. status_command i3status
  20. font pango:monospace 9
  21.  
  22. colors {
  23. background $bg-color
  24. separator #757575
  25. # border background text
  26. focused_workspace $bg-color $bg-color $text-color
  27. inactive_workspace $inactive-bg-color $inactive-bg-color $inactive-text-color
  28. urgent_workspace $urgent-bg-color $urgent-bg-color $text-color
  29. }
  30. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement