lpfManiak

theme.lua

Sep 27th, 2015
110
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 4.83 KB | None | 0 0
  1. -------------------------------
  2. --    "Sky" awesome theme    --
  3. --  By Andrei "Garoth" Thorp --
  4. -------------------------------
  5. -- If you want SVGs and extras, get them from garoth.com/awesome/sky-theme
  6.  
  7. -- BASICS
  8. theme = {}
  9. theme.font          = "lemon 8"
  10.  
  11. theme.bg_normal     = "#fefffd"
  12. --theme.bg_focus      = "#c9d6bc"
  13. theme.bg_focus      = "#e8edd9"
  14. theme.bg_urgent     = "#efccbb"
  15. theme.bg_minimize   = "#fefffd"
  16. theme.bg_systray    = theme.bg_normal
  17.  
  18. theme.useless_gap_width = "20"
  19. theme.lower_window_height = "72"
  20. --set your vertical resolution
  21. theme.vertical_resolution = "900"
  22. --set the extra vertical spacing to 8px
  23. theme.vertical_border = "8"
  24. --set the extra outermost spacing to 18px
  25. theme.outer_padding = "18"
  26.  
  27. theme.fg_normal     = "#3d402b"
  28. theme.fg_focus      = "#3d402b"
  29. theme.fg_urgent     = "#3d402b"
  30. theme.fg_minimize   = "#3d402b"
  31.  
  32. theme.border_width  = 1
  33.  
  34. -- Border colors without compton
  35. --theme.border_normal = "#9c886e"old
  36. --theme.border_focus  = "#8c7860"old
  37. theme.border_normal = "#c7b59f"
  38. theme.border_focus  = "#a08768"
  39. -- IMAGES
  40. theme.layout_fairh           = "/usr/share/awesome/themes/sky/layouts/fairh.png"
  41. theme.layout_fairv           = "/usr/share/awesome/themes/sky/layouts/fairv.png"
  42. theme.layout_floating        = "/usr/share/awesome/themes/sky/layouts/floating.png"
  43. theme.layout_magnifier       = "/usr/share/awesome/themes/sky/layouts/magnifier.png"
  44. theme.layout_max             = "/usr/share/awesome/themes/sky/layouts/max.png"
  45. theme.layout_fullscreen      = "/usr/share/awesome/themes/sky/layouts/fullscreen.png"
  46. theme.layout_tilebottom      = "/usr/share/awesome/themes/sky/layouts/tilebottom.png"
  47. theme.layout_tileleft        = "/usr/share/awesome/themes/sky/layouts/tileleft.png"
  48. theme.layout_tile            = "/usr/share/awesome/themes/sky/layouts/tile.png"
  49. theme.layout_tiletop         = "/usr/share/awesome/themes/sky/layouts/tiletop.png"
  50. theme.layout_spiral          = "/usr/share/awesome/themes/sky/layouts/spiral.png"
  51. theme.layout_dwindle         = "/usr/share/awesome/themes/sky/layouts/dwindle.png"
  52.  
  53. theme.awesome_icon           = "/usr/share/awesome/themes/sky/awesome-icon.png"
  54.  
  55. -- from default for now...
  56. theme.menu_submenu_icon     = "/usr/share/awesome/themes/default/submenu.png"
  57. --theme.taglist_squares_sel   = "/usr/share/awesome/themes/default/taglist/squarefw.png"
  58. --theme.taglist_squares_unsel = "/usr/share/awesome/themes/default/taglist/squarew.png"
  59.  
  60. -- MISC
  61. theme.wallpaper             = "~/.config/awesome/themes/lpf/background.png"
  62. theme.titlebar_close_button = "true"
  63. theme.menu_height           = 15
  64. theme.menu_width            = 100
  65.  
  66. -- Define the image to load
  67. theme.titlebar_close_button_normal = "/usr/share/awesome/themes/default/titlebar/close_normal.png"
  68. theme.titlebar_close_button_focus = "/usr/share/awesome/themes/default/titlebar/close_focus.png"
  69.  
  70. theme.titlebar_ontop_button_normal_inactive = "/usr/share/awesome/themes/default/titlebar/ontop_normal_inactive.png"
  71. theme.titlebar_ontop_button_focus_inactive = "/usr/share/awesome/themes/default/titlebar/ontop_focus_inactive.png"
  72. theme.titlebar_ontop_button_normal_active = "/usr/share/awesome/themes/default/titlebar/ontop_normal_active.png"
  73. theme.titlebar_ontop_button_focus_active = "/usr/share/awesome/themes/default/titlebar/ontop_focus_active.png"
  74.  
  75. theme.titlebar_sticky_button_normal_inactive = "/usr/share/awesome/themes/default/titlebar/sticky_normal_inactive.png"
  76. theme.titlebar_sticky_button_focus_inactive = "/usr/share/awesome/themes/default/titlebar/sticky_focus_inactive.png"
  77. theme.titlebar_sticky_button_normal_active = "/usr/share/awesome/themes/default/titlebar/sticky_normal_active.png"
  78. theme.titlebar_sticky_button_focus_active = "/usr/share/awesome/themes/default/titlebar/sticky_focus_active.png"
  79.  
  80. theme.titlebar_floating_button_normal_inactive = "/usr/share/awesome/themes/default/titlebar/floating_normal_inactive.png"
  81. theme.titlebar_floating_button_focus_inactive = "/usr/share/awesome/themes/default/titlebar/floating_focus_inactive.png"
  82. theme.titlebar_floating_button_normal_active = "/usr/share/awesome/themes/default/titlebar/floating_normal_active.png"
  83. theme.titlebar_floating_button_focus_active = "/usr/share/awesome/themes/default/titlebar/floating_focus_active.png"
  84.  
  85. theme.titlebar_maximized_button_normal_inactive = "/usr/share/awesome/themes/default/titlebar/maximized_normal_inactive.png"
  86. theme.titlebar_maximized_button_focus_inactive = "/usr/share/awesome/themes/default/titlebar/maximized_focus_inactive.png"
  87. theme.titlebar_maximized_button_normal_active = "/usr/share/awesome/themes/default/titlebar/maximized_normal_active.png"
  88. theme.titlebar_maximized_button_focus_active = "/usr/share/awesome/themes/default/titlebar/maximized_focus_active.png"
  89. theme.tasklist_disable_icon = true
  90. return theme
  91. -- vim: filetype=lua:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:textwidth=80
Advertisement
Add Comment
Please, Sign In to add comment