Advertisement
poetician

Avocado | i3

Apr 7th, 2021
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.46 KB | None | 0 0
  1. ## Base16 oomox-avocado_2
  2. # Author: oomox-avocado_2
  3. #
  4. # You can use these variables anywhere in the i3 configuration file.
  5.  
  6. set $base00 #d2e190
  7. set $base01 #001c00
  8. set $base02 #001c00
  9. set $base03 #7a9857
  10. set $base04 #e6f5a4
  11. set $base05 #234f1e
  12. set $base06 #ECFBAA
  13. set $base07 #ECFBAA
  14. set $base08 #617b30
  15. set $base09 #234f1e
  16. set $base0A #234f1e
  17. set $base0B #81a140
  18. set $base0C #234f1e
  19. set $base0D #74923a
  20. set $base0E #a3bf45
  21. set $base0F #2d5113
  22.  
  23. # Basic bar configuration using the Base16 variables.
  24. bar {
  25. status_command i3status
  26.  
  27. colors {
  28. background $base00
  29. separator $base01
  30. statusline $base04
  31.  
  32. # State Border BG Text
  33. focused_workspace $base05 $base0D $base00
  34. active_workspace $base05 $base03 $base00
  35. inactive_workspace $base03 $base01 $base05
  36. urgent_workspace $base08 $base08 $base00
  37. binding_mode $base00 $base0A $base00
  38. }
  39. }
  40.  
  41. # Basic color configuration using the Base16 variables for windows and borders.
  42. # Property Name Border BG Text Indicator Child Border
  43. client.focused $base05 $base0D $base00 $base0D $base0C
  44. client.focused_inactive $base01 $base01 $base05 $base03 $base01
  45. client.unfocused $base01 $base00 $base05 $base01 $base01
  46. client.urgent $base08 $base08 $base00 $base08 $base08
  47. client.placeholder $base00 $base00 $base05 $base00 $base00
  48. client.background $base07
  49.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement