Advertisement
majorsquirrel

theme.lua

Apr 18th, 2012
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 4.96 KB | None | 0 0
  1. ---------------------------
  2. -- Default awesome theme --
  3. ---------------------------
  4.  
  5. theme = {}
  6.  
  7. theme.font          = "sans 8"
  8.  
  9. theme.bg_normal     = "#222222"
  10. theme.bg_focus      = "#535d6c"
  11. theme.bg_urgent     = "#ff0000"
  12. theme.bg_minimize   = "#444444"
  13.  
  14. theme.fg_normal     = "#aaaaaa"
  15. theme.fg_focus      = "#ffffff"
  16. theme.fg_urgent     = "#ffffff"
  17. theme.fg_minimize   = "#ffffff"
  18.  
  19. theme.border_width  = "1"
  20. theme.border_normal = "#000000"
  21. theme.border_focus  = "#535d6c"
  22. theme.border_marked = "#91231c"
  23.  
  24. -- There are other variable sets
  25. -- overriding the default one when
  26. -- defined, the sets are:
  27. -- [taglist|tasklist]_[bg|fg]_[focus|urgent]
  28. -- titlebar_[bg|fg]_[normal|focus]
  29. -- tooltip_[font|opacity|fg_color|bg_color|border_width|border_color]
  30. -- mouse_finder_[color|timeout|animate_timeout|radius|factor]
  31. -- Example:
  32. --theme.taglist_bg_focus = "#ff0000"
  33.  
  34. -- Display the taglist squares
  35. theme.taglist_squares_sel   = "/usr/share/awesome/themes/default/taglist/squarefw.png"
  36. theme.taglist_squares_unsel = "/usr/share/awesome/themes/default/taglist/squarew.png"
  37.  
  38. theme.tasklist_floating_icon = "/usr/share/awesome/themes/default/tasklist/floatingw.png"
  39.  
  40. -- Variables set for theming the menu:
  41. -- menu_[bg|fg]_[normal|focus]
  42. -- menu_[border_color|border_width]
  43. theme.menu_submenu_icon = "/usr/share/awesome/themes/default/submenu.png"
  44. theme.menu_height = "15"
  45. theme.menu_width  = "100"
  46.  
  47. -- You can add as many variables as
  48. -- you wish and access them by using
  49. -- beautiful.variable in your rc.lua
  50. --theme.bg_widget = "#cc0000"
  51.  
  52. -- Define the image to load
  53. theme.titlebar_close_button_normal = "/usr/share/awesome/themes/default/titlebar/close_normal.png"
  54. theme.titlebar_close_button_focus  = "/usr/share/awesome/themes/default/titlebar/close_focus.png"
  55.  
  56. theme.titlebar_ontop_button_normal_inactive = "/usr/share/awesome/themes/default/titlebar/ontop_normal_inactive.png"
  57. theme.titlebar_ontop_button_focus_inactive  = "/usr/share/awesome/themes/default/titlebar/ontop_focus_inactive.png"
  58. theme.titlebar_ontop_button_normal_active = "/usr/share/awesome/themes/default/titlebar/ontop_normal_active.png"
  59. theme.titlebar_ontop_button_focus_active  = "/usr/share/awesome/themes/default/titlebar/ontop_focus_active.png"
  60.  
  61. theme.titlebar_sticky_button_normal_inactive = "/usr/share/awesome/themes/default/titlebar/sticky_normal_inactive.png"
  62. theme.titlebar_sticky_button_focus_inactive  = "/usr/share/awesome/themes/default/titlebar/sticky_focus_inactive.png"
  63. theme.titlebar_sticky_button_normal_active = "/usr/share/awesome/themes/default/titlebar/sticky_normal_active.png"
  64. theme.titlebar_sticky_button_focus_active  = "/usr/share/awesome/themes/default/titlebar/sticky_focus_active.png"
  65.  
  66. theme.titlebar_floating_button_normal_inactive = "/usr/share/awesome/themes/default/titlebar/floating_normal_inactive.png"
  67. theme.titlebar_floating_button_focus_inactive  = "/usr/share/awesome/themes/default/titlebar/floating_focus_inactive.png"
  68. theme.titlebar_floating_button_normal_active = "/usr/share/awesome/themes/default/titlebar/floating_normal_active.png"
  69. theme.titlebar_floating_button_focus_active  = "/usr/share/awesome/themes/default/titlebar/floating_focus_active.png"
  70.  
  71. theme.titlebar_maximized_button_normal_inactive = "/usr/share/awesome/themes/default/titlebar/maximized_normal_inactive.png"
  72. theme.titlebar_maximized_button_focus_inactive  = "/usr/share/awesome/themes/default/titlebar/maximized_focus_inactive.png"
  73. theme.titlebar_maximized_button_normal_active = "/usr/share/awesome/themes/default/titlebar/maximized_normal_active.png"
  74. theme.titlebar_maximized_button_focus_active  = "/usr/share/awesome/themes/default/titlebar/maximized_focus_active.png"
  75.  
  76. -- You can use your own command to set your wallpaper
  77. theme.wallpaper_cmd = { "awsetbg /home/dragon/.config/awesome/themes/default/batman.jpg" }
  78.  
  79. -- You can use your own layout icons like this:
  80. theme.layout_fairh = "/usr/share/awesome/themes/default/layouts/fairhw.png"
  81. theme.layout_fairv = "/usr/share/awesome/themes/default/layouts/fairvw.png"
  82. theme.layout_floating  = "/usr/share/awesome/themes/default/layouts/floatingw.png"
  83. theme.layout_magnifier = "/usr/share/awesome/themes/default/layouts/magnifierw.png"
  84. theme.layout_max = "/usr/share/awesome/themes/default/layouts/maxw.png"
  85. theme.layout_fullscreen = "/usr/share/awesome/themes/default/layouts/fullscreenw.png"
  86. theme.layout_tilebottom = "/usr/share/awesome/themes/default/layouts/tilebottomw.png"
  87. theme.layout_tileleft   = "/usr/share/awesome/themes/default/layouts/tileleftw.png"
  88. theme.layout_tile = "/usr/share/awesome/themes/default/layouts/tilew.png"
  89. theme.layout_tiletop = "/usr/share/awesome/themes/default/layouts/tiletopw.png"
  90. theme.layout_spiral  = "/usr/share/awesome/themes/default/layouts/spiralw.png"
  91. theme.layout_dwindle = "/usr/share/awesome/themes/default/layouts/dwindlew.png"
  92.  
  93. theme.awesome_icon = "/usr/share/awesome/icons/awesome16.png"
  94.  
  95. return theme
  96. -- 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