Guest User

theme.lua

a guest
Nov 19th, 2013
37
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 5.78 KB | None | 0 0
  1. -----------------------------
  2. -- DWV's AWESOME THEME 3.5 --
  3. -----------------------------
  4.  
  5. theme = {}
  6.  
  7. -- theme.font          = "sans 8"
  8. -- Terminus 9
  9. --theme.font        = "Tamsyn 8"
  10. theme.font          = "lemon 7"
  11. theme.font_alt      = "-*-lemon-*-*-*-*-*-*-*-*-*-*-*-*"
  12.  
  13. theme.bg_normal     = "#0F1019FF" -- #101119FF
  14. theme.bg_focus      = "#181C29" -- #191C27
  15. theme.bg_urgent     = theme.bg_normal
  16. theme.bg_minimize   = theme.bg_normal
  17. theme.bg_systray    = theme.bg_normal
  18.  
  19. theme.fg_normal     = "#626E8A"
  20. theme.fg_focus      = "#9D9EA8"
  21. theme.fg_urgent     = "#D3D5E0"
  22. theme.fg_minimize   = "#3E4147"
  23.  
  24. theme.border_width  = 2
  25. --theme.border_normal = "#8E3736"
  26. theme.border_normal = "#434449" --#181C1B
  27. theme.border_focus  = "#626E8A" --#353A38
  28. theme.border_marked = "#626E8A" --#303533
  29.  
  30. theme.useless_gap_width = 10
  31.  
  32. --theme.taglist_bg_focus = "#37103D"
  33. --theme.taglist_fg_focus = "#EF1AEF"
  34.  
  35. --theme.textbox_widget_margin_top     = 1
  36.  
  37. --theme.awful_widget_height           = 14
  38. --theme.awful_widget_margin_top       = 10
  39. --theme.awful_widget_margin_bottom    = 10
  40. --theme.awful_widget_margin_left      = 10
  41. --theme.awful_widget_margin_right     = 10
  42.  
  43. -- There are other variable sets
  44. -- overriding the default one when
  45. -- defined, the sets are:
  46. -- [taglist|tasklist]_[bg|fg]_[focus|urgent]
  47.  
  48. theme.taglist_bg_focus = "#181C29" --#1F2322
  49.  
  50. -- titlebar_[bg|fg]_[normal|focus]
  51. -- tooltip_[font|opacity|fg_color|bg_color|border_width|border_color]
  52. -- mouse_finder_[color|timeout|animate_timeout|radius|factor]
  53. -- Example:
  54. --theme.taglist_bg_focus = "#ff0000"
  55.  
  56. -- Display the taglist squares
  57. --theme.taglist_squares_sel   = "~/.config/awesome/theme/taglist/squarefw-g.png"
  58. --theme.taglist_squares_unsel = "~/.config/awesome/theme/taglist/squarew-g.png"
  59. --theme.taglist_squares_sel = "~/.config/awesome/theme/taglist/squareln-fg.png"
  60. --theme.taglist_squares_unsel = "~/.config/awesome/theme/taglist/squareln-g.png"
  61.  
  62. theme.tasklist_disable_icon = true
  63.  
  64. -- Variables set for theming the menu:
  65. -- menu_[bg|fg]_[normal|focus]
  66. -- menu_[border_color|border_width]
  67.  
  68. --theme.menu_bg_normal = "#232625"
  69. --theme.menu_bg_focus = "#3A3D3C"
  70. theme.menu_bg_normal = "#1F2430" --11121A
  71. theme.menu_bg_focus = "#3B4657" --202231
  72.  
  73. theme.menu_fg_normal = "#9D9EA8"
  74. theme.menu_fg_focus = "#D3D5E0"
  75.  
  76. theme.menu_border_color = "#626E8A"
  77.  
  78. theme.menu_submenu_icon = "~/.config/awesome/theme/submenu3.png"
  79. theme.menu_height = 15
  80. theme.menu_width  = 100
  81.  
  82. -- You can add as many variables as
  83. -- you wish and access them by using
  84. -- beautiful.variable in your rc.lua
  85. --theme.bg_widget = "#cc0000"
  86.  
  87. -- Define the image to load
  88. theme.titlebar_close_button_normal = "~/.config/awesome/theme/titlebar/close_normal.png"
  89. theme.titlebar_close_button_focus  = "~/.config/awesome/theme/titlebar/close_focus.png"
  90.  
  91. theme.titlebar_ontop_button_normal_inactive = "~/.config/awesome/theme/titlebar/ontop_normal_inactive.png"
  92. theme.titlebar_ontop_button_focus_inactive  = "~/.config/awesome/theme/titlebar/ontop_focus_inactive.png"
  93. theme.titlebar_ontop_button_normal_active = "~/.config/awesome/theme/titlebar/ontop_normal_active.png"
  94. theme.titlebar_ontop_button_focus_active  = "~/.config/awesome/theme/titlebar/ontop_focus_active.png"
  95.  
  96. theme.titlebar_sticky_button_normal_inactive = "~/.config/awesome/theme/titlebar/sticky_normal_inactive.png"
  97. theme.titlebar_sticky_button_focus_inactive  = "~/.config/awesome/theme/titlebar/sticky_focus_inactive.png"
  98. theme.titlebar_sticky_button_normal_active = "~/.config/awesome/theme/titlebar/sticky_normal_active.png"
  99. theme.titlebar_sticky_button_focus_active  = "~/.config/awesome/theme/titlebar/sticky_focus_active.png"
  100.  
  101. theme.titlebar_floating_button_normal_inactive = "~/.config/awesome/theme/titlebar/floating_normal_inactive.png"
  102. theme.titlebar_floating_button_focus_inactive  = "~/.config/awesome/theme/titlebar/floating_focus_inactive.png"
  103. theme.titlebar_floating_button_normal_active = "~/.config/awesome/theme/titlebar/floating_normal_active.png"
  104. theme.titlebar_floating_button_focus_active  = "~/.config/awesome/theme/titlebar/floating_focus_active.png"
  105.  
  106. theme.titlebar_maximized_button_normal_inactive = "~/.config/awesome/theme/titlebar/maximized_normal_inactive.png"
  107. theme.titlebar_maximized_button_focus_inactive  = "~/.config/awesome/theme/titlebar/maximized_focus_inactive.png"
  108. theme.titlebar_maximized_button_normal_active = "~/.config/awesome/theme/titlebar/maximized_normal_active.png"
  109. theme.titlebar_maximized_button_focus_active  = "~/.config/awesome/theme/titlebar/maximized_focus_active.png"
  110.  
  111. --theme.wallpaper = config_dir .. "/theme/wallpaper-1624678.jpg"
  112.  
  113. -- You can use your own layout icons like this:
  114. theme.layout_fairh = "~/.config/awesome/theme/layouts/fairhw.png"
  115. theme.layout_fairv = "~/.config/awesome/theme/layouts/fairvw.png"
  116. theme.layout_floating  = "~/.config/awesome/theme/layouts/floatingw.png"
  117. theme.layout_magnifier = "~/.config/awesome/theme/layouts/magnifierw.png"
  118. theme.layout_max = "~/.config/awesome/theme/layouts/maxw.png"
  119. theme.layout_fullscreen = "~/.config/awesome/theme/layouts/fullscreenw.png"
  120. theme.layout_tilebottom = "~/.config/awesome/theme/layouts/tilebottomw.png"
  121. theme.layout_tileleft   = "~/.config/awesome/theme/layouts/tileleftw.png"
  122. theme.layout_tile = "~/.config/awesome/theme/layouts/tilew.png"
  123. theme.layout_tiletop = "~/.config/awesome/theme/layouts/tiletopw.png"
  124. theme.layout_spiral  = "~/.config/awesome/theme/layouts/spiralw.png"
  125. theme.layout_dwindle = "~/.config/awesome/theme/layouts/dwindlew.png"
  126.  
  127. theme.awesome_icon = "~/.config/awesome/theme/awesome14.png"
  128.  
  129. -- Define the icon theme for application icons. If not set then the icons
  130. -- from ~/.config/icons and ~/.config/icons/hicolor will be used.
  131. theme.icon_theme = nil
  132.  
  133. return theme
  134. -- vim: filetype=lua:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:textwidth=80
Advertisement
Add Comment
Please, Sign In to add comment