theme.lua 4.8 KB

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