Advertisement
Guest User

Divius

a guest
Oct 26th, 2010
409
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 4.41 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          = "sans 8"
  10.  
  11. theme.bg_focus      = "#3C3C3C"
  12. theme.bg_normal     = "#4C4C4C"
  13. theme.bg_urgent     = "#F07746"
  14. theme.bg_minimize   = "#4C4C4C"
  15.  
  16. theme.fg_normal     = "#F2F1F0"
  17. theme.fg_focus      = "#F2F1F0"
  18. theme.fg_urgent     = "#F2F1F0"
  19. theme.fg_minimize   = "#F2F1F0"
  20.  
  21. theme.border_width  = "0"
  22. theme.border_normal = "#c7c7c7"
  23. theme.border_focus  = "#729fcf"
  24. theme.border_marked = "#c7c7c7"
  25.  
  26. -- IMAGES
  27. theme.layout_fairh           = "/usr/share/awesome/themes/default/layouts/fairh.png"
  28. theme.layout_fairv           = "/usr/share/awesome/themes/default/layouts/fairv.png"
  29. theme.layout_floating        = "/usr/share/awesome/themes/default/layouts/floating.png"
  30. theme.layout_magnifier       = "/usr/share/awesome/themes/default/layouts/magnifier.png"
  31. theme.layout_max             = "/usr/share/awesome/themes/default/layouts/max.png"
  32. theme.layout_fullscreen      = "/usr/share/awesome/themes/default/layouts/fullscreen.png"
  33. theme.layout_tilebottom      = "/usr/share/awesome/themes/default/layouts/tilebottom.png"
  34. theme.layout_tileleft        = "/usr/share/awesome/themes/default/layouts/tileleft.png"
  35. theme.layout_tile            = "/usr/share/awesome/themes/default/layouts/tile.png"
  36. theme.layout_tiletop         = "/usr/share/awesome/themes/default/layouts/tiletop.png"
  37.  
  38. theme.awesome_icon           = "/usr/share/awesome/themes/sky/awesome-icon.png"
  39. theme.tasklist_floating_icon = "/usr/share/awesome/themes/sky/layouts/floating.png"
  40.  
  41. -- from default for now...
  42. theme.menu_submenu_icon     = "/usr/share/awesome/themes/default/submenu.png"
  43. theme.taglist_squares_sel   = "/usr/share/awesome/themes/default/taglist/squarefw.png"
  44. theme.taglist_squares_unsel = "/usr/share/awesome/themes/default/taglist/squarew.png"
  45.  
  46. -- MISC
  47. --theme.wallpaper_cmd         = { "awsetbg /usr/share/awesome/themes/sky/sky-background.png" }
  48. theme.taglist_squares       = "true"
  49. theme.titlebar_close_button = "true"
  50. theme.menu_height           = "15"
  51. theme.menu_width            = "100"
  52.  
  53. -- Define the image to load
  54. theme.titlebar_close_button_normal = "/usr/share/awesome/themes/zenburn/titlebar/close_normal.png"
  55. theme.titlebar_close_button_focus = "/usr/share/awesome/themes/zenburn/titlebar/close_focus.png"
  56.  
  57. theme.titlebar_ontop_button_normal_inactive = "/usr/share/awesome/themes/zenburn/titlebar/ontop_normal_inactive.png"
  58. theme.titlebar_ontop_button_focus_inactive = "/usr/share/awesome/themes/zenburn/titlebar/ontop_focus_inactive.png"
  59. theme.titlebar_ontop_button_normal_active = "/usr/share/awesome/themes/zenburn/titlebar/ontop_normal_active.png"
  60. theme.titlebar_ontop_button_focus_active = "/usr/share/awesome/themes/zenburn/titlebar/ontop_focus_active.png"
  61.  
  62. theme.titlebar_sticky_button_normal_inactive = "/usr/share/awesome/themes/zenburn/titlebar/sticky_normal_inactive.png"
  63. theme.titlebar_sticky_button_focus_inactive = "/usr/share/awesome/themes/zenburn/titlebar/sticky_focus_inactive.png"
  64. theme.titlebar_sticky_button_normal_active = "/usr/share/awesome/themes/zenburn/titlebar/sticky_normal_active.png"
  65. theme.titlebar_sticky_button_focus_active = "/usr/share/awesome/themes/zenburn/titlebar/sticky_focus_active.png"
  66.  
  67. theme.titlebar_floating_button_normal_inactive = "/usr/share/awesome/themes/zenburn/titlebar/floating_normal_inactive.png"
  68. theme.titlebar_floating_button_focus_inactive = "/usr/share/awesome/themes/zenburn/titlebar/floating_focus_inactive.png"
  69. theme.titlebar_floating_button_normal_active = "/usr/share/awesome/themes/zenburn/titlebar/floating_normal_active.png"
  70. theme.titlebar_floating_button_focus_active = "/usr/share/awesome/themes/zenburn/titlebar/floating_focus_active.png"
  71.  
  72. theme.titlebar_maximized_button_normal_inactive = "/usr/share/awesome/themes/zenburn/titlebar/maximized_normal_inactive.png"
  73. theme.titlebar_maximized_button_focus_inactive = "/usr/share/awesome/themes/zenburn/titlebar/maximized_focus_inactive.png"
  74. theme.titlebar_maximized_button_normal_active = "/usr/share/awesome/themes/zenburn/titlebar/maximized_normal_active.png"
  75. theme.titlebar_maximized_button_focus_active = "/usr/share/awesome/themes/zenburn/titlebar/maximized_focus_active.png"
  76.  
  77. return theme
  78. -- vim: filetype=lua:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:encoding=utf-8:textwidth=80
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement