Advertisement
Guest User

Untitled

a guest
Jun 12th, 2013
301
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 5.11 KB | None | 0 0
  1. ---------------------------
  2. -- Default awesome theme --
  3. ---------------------------
  4.  
  5. theme = {}
  6.  
  7. theme.font          = "droid sans 12"
  8.  
  9. theme.bg_normal     = "#1C1C1CAA"
  10. theme.bg_focus      = "#000000AA"
  11. theme.bg_urgent     = "#000000AA"
  12. theme.bg_minimize   = "#1C1C1C"
  13. theme.bg_systray    = "#1C1C1CAA"
  14.  
  15. theme.fg_normal     = "white"
  16. theme.fg_focus      = "#00FF00"
  17. theme.fg_urgent     = "#ffffff"
  18. theme.fg_minimize   = "#ffffff"
  19.  
  20. theme.border_width  = 1
  21. theme.border_normal = "#000000"
  22. theme.border_focus  = "#535d6c"
  23. theme.border_marked = "#91231c"
  24.  
  25. -- There are other variable sets
  26. -- overriding the default one when
  27. -- defined, the sets are:
  28. -- [taglist|tasklist]_[bg|fg]_[focus|urgent]
  29. -- titlebar_[bg|fg]_[normal|focus]
  30. -- tooltip_[font|opacity|fg_color|bg_color|border_width|border_color]
  31. -- mouse_finder_[color|timeout|animate_timeout|radius|factor]
  32. -- Example:
  33. --theme.taglist_bg_focus = "#ff0000"
  34.  
  35. -- Display the taglist squares
  36. theme.taglist_squares_sel   = "/usr/share/awesome/themes/default/taglist/squarefw.png"
  37. theme.taglist_squares_unsel = "/usr/share/awesome/themes/default/taglist/squarew.png"
  38.  
  39. -- Variables set for theming the menu:
  40. -- menu_[bg|fg]_[normal|focus]
  41. -- menu_[border_color|border_width]
  42. theme.menu_submenu_icon = "/usr/share/awesome/themes/default/submenu.png"
  43. theme.menu_height = 20
  44. theme.menu_width  = 200
  45. theme.menu_bg_normal = "#000000AA"
  46. theme.menu_bg_focus = "#2F4F4FAA"
  47. theme.menu_fg_normal = "#C0C0C0"
  48. theme.menu_fg_focus = "white"
  49.  
  50. -- You can add as many variables as
  51. -- you wish and access them by using
  52. -- beautiful.variable in your rc.lua
  53. theme.bg_widget = "#1C1C1CAA"
  54.  
  55. -- Define the image to load
  56. theme.titlebar_close_button_normal = "/usr/share/awesome/themes/default/titlebar/close_normal.png"
  57. theme.titlebar_close_button_focus  = "/usr/share/awesome/themes/default/titlebar/close_focus.png"
  58.  
  59. theme.titlebar_ontop_button_normal_inactive = "/usr/share/awesome/themes/default/titlebar/ontop_normal_inactive.png"
  60. theme.titlebar_ontop_button_focus_inactive  = "/usr/share/awesome/themes/default/titlebar/ontop_focus_inactive.png"
  61. theme.titlebar_ontop_button_normal_active = "/usr/share/awesome/themes/default/titlebar/ontop_normal_active.png"
  62. theme.titlebar_ontop_button_focus_active  = "/usr/share/awesome/themes/default/titlebar/ontop_focus_active.png"
  63.  
  64. theme.titlebar_sticky_button_normal_inactive = "/usr/share/awesome/themes/default/titlebar/sticky_normal_inactive.png"
  65. theme.titlebar_sticky_button_focus_inactive  = "/usr/share/awesome/themes/default/titlebar/sticky_focus_inactive.png"
  66. theme.titlebar_sticky_button_normal_active = "/usr/share/awesome/themes/default/titlebar/sticky_normal_active.png"
  67. theme.titlebar_sticky_button_focus_active  = "/usr/share/awesome/themes/default/titlebar/sticky_focus_active.png"
  68.  
  69. theme.titlebar_floating_button_normal_inactive = "/usr/share/awesome/themes/default/titlebar/floating_normal_inactive.png"
  70. theme.titlebar_floating_button_focus_inactive  = "/usr/share/awesome/themes/default/titlebar/floating_focus_inactive.png"
  71. theme.titlebar_floating_button_normal_active = "/usr/share/awesome/themes/default/titlebar/floating_normal_active.png"
  72. theme.titlebar_floating_button_focus_active  = "/usr/share/awesome/themes/default/titlebar/floating_focus_active.png"
  73.  
  74. theme.titlebar_maximized_button_normal_inactive = "/usr/share/awesome/themes/default/titlebar/maximized_normal_inactive.png"
  75. theme.titlebar_maximized_button_focus_inactive  = "/usr/share/awesome/themes/default/titlebar/maximized_focus_inactive.png"
  76. theme.titlebar_maximized_button_normal_active = "/usr/share/awesome/themes/default/titlebar/maximized_normal_active.png"
  77. theme.titlebar_maximized_button_focus_active  = "/usr/share/awesome/themes/default/titlebar/maximized_focus_active.png"
  78.  
  79. theme.wallpaper = "~/Pictures/Anime/1366x768/leech_out3.jpe"
  80.  
  81. -- You can use your own layout icons like this:
  82. theme.layout_fairh = "/usr/share/awesome/themes/default/layouts/fairhw.png"
  83. theme.layout_fairv = "/usr/share/awesome/themes/default/layouts/fairvw.png"
  84. theme.layout_floating  = "/usr/share/awesome/themes/default/layouts/floatingw.png"
  85. theme.layout_magnifier = "/usr/share/awesome/themes/default/layouts/magnifierw.png"
  86. theme.layout_max = "/usr/share/awesome/themes/default/layouts/maxw.png"
  87. theme.layout_fullscreen = "/usr/share/awesome/themes/default/layouts/fullscreenw.png"
  88. theme.layout_tilebottom = "/usr/share/awesome/themes/default/layouts/tilebottomw.png"
  89. theme.layout_tileleft   = "/usr/share/awesome/themes/default/layouts/tileleftw.png"
  90. theme.layout_tile = "/usr/share/awesome/themes/default/layouts/tilew.png"
  91. theme.layout_tiletop = "/usr/share/awesome/themes/default/layouts/tiletopw.png"
  92. theme.layout_spiral  = "/usr/share/awesome/themes/default/layouts/spiralw.png"
  93. theme.layout_dwindle = "/usr/share/awesome/themes/default/layouts/dwindlew.png"
  94.  
  95. theme.awesome_icon = "~/.config/awesome/icons/awesome32.png"
  96.  
  97. -- Define the icon theme for application icons. If not set then the icons
  98. -- from /usr/share/icons and /usr/share/icons/hicolor will be used.
  99. theme.icon_theme = nil
  100.  
  101. return theme
  102. -- vim: filetype=lua:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:textwidth=80
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement