Advertisement
helenaryuu

dot_theme_awesome

Dec 12th, 2012
2,128
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 5.19 KB | None | 0 0
  1. ---------------------------
  2. -- Dot awesome theme by helena_ryuu --
  3. ---------------------------
  4.  
  5. theme = {}
  6.  
  7. theme.font          = "Dejavu Sans Mono  8"
  8.  
  9. theme.fg_normal     = "#719f9f"
  10. theme.fg_focus      = "#ff6565"
  11. theme.bg_urgent     = "#ff0000"
  12. theme.bg_minimize   = "#444444"
  13.  
  14. theme.bg_normal     = "#080808"
  15. theme.bg_focus      = "#121212"
  16. theme.fg_urgent     = "#ffffff"
  17. theme.fg_minimize   = "#ffffff"
  18.  
  19. theme.border_width  = "1"
  20. theme.border_normal = "#121212"
  21. theme.border_focus  = "#535d6c"
  22. theme.border_marked = "#000000"
  23.  
  24. -- Display the taglist squares
  25. theme.taglist_squares_sel   = "/usr/share/awesome/themes/default/taglist/squarefw.png"
  26. theme.taglist_squares_unsel = "/usr/share/awesome/themes/default/taglist/squarew.png"
  27.  
  28. theme.tasklist_floating_icon = "/usr/share/awesome/themes/dot/wibox_icons/heart2_24.png"
  29.  
  30. -- Variables set for theming the menu:
  31. theme.menu_submenu_icon = "/usr/share/awesome/themes/dot/submenu.png"
  32. theme.menu_height = "15"
  33. theme.menu_width  = "100"
  34.  
  35. -- Define the image to load
  36. theme.titlebar_close_button_normal = "/usr/share/awesome/themes/default/titlebar/close_normal.png"
  37. theme.titlebar_close_button_focus  = "/usr/share/awesome/themes/default/titlebar/close_focus.png"
  38.  
  39. theme.titlebar_ontop_button_normal_inactive = "/usr/share/awesome/themes/default/titlebar/ontop_normal_inactive.png"
  40. theme.titlebar_ontop_button_focus_inactive  = "/usr/share/awesome/themes/default/titlebar/ontop_focus_inactive.png"
  41. theme.titlebar_ontop_button_normal_active = "/usr/share/awesome/themes/default/titlebar/ontop_normal_active.png"
  42. theme.titlebar_ontop_button_focus_active  = "/usr/share/awesome/themes/default/titlebar/ontop_focus_active.png"
  43.  
  44. theme.titlebar_sticky_button_normal_inactive = "/usr/share/awesome/themes/default/titlebar/sticky_normal_inactive.png"
  45. theme.titlebar_sticky_button_focus_inactive  = "/usr/share/awesome/themes/default/titlebar/sticky_focus_inactive.png"
  46. theme.titlebar_sticky_button_normal_active = "/usr/share/awesome/themes/default/titlebar/sticky_normal_active.png"
  47. theme.titlebar_sticky_button_focus_active  = "/usr/share/awesome/themes/default/titlebar/sticky_focus_active.png"
  48.  
  49. theme.titlebar_floating_button_normal_inactive = "/usr/share/awesome/themes/default/titlebar/floating_normal_inactive.png"
  50. theme.titlebar_floating_button_focus_inactive  = "/usr/share/awesome/themes/default/titlebar/floating_focus_inactive.png"
  51. theme.titlebar_floating_button_normal_active = "/usr/share/awesome/themes/default/titlebar/floating_normal_active.png"
  52. theme.titlebar_floating_button_focus_active  = "/usr/share/awesome/themes/default/titlebar/floating_focus_active.png"
  53.  
  54. theme.titlebar_maximized_button_normal_inactive = "/usr/share/awesome/themes/default/titlebar/maximized_normal_inactive.png"
  55. theme.titlebar_maximized_button_focus_inactive  = "/usr/share/awesome/themes/default/titlebar/maximized_focus_inactive.png"
  56. theme.titlebar_maximized_button_normal_active = "/usr/share/awesome/themes/default/titlebar/maximized_normal_active.png"
  57. theme.titlebar_maximized_button_focus_active  = "/usr/share/awesome/themes/default/titlebar/maximized_focus_active.png"
  58.  
  59. -- You can use your own command to set your wallpaper
  60. theme.wallpaper_cmd = { "/usr/bin/nitrogen --restore" }
  61.  
  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. -----------------------
  76. theme.widget_sys        = "/usr/share/awesome/themes/dot/wibox_icons/laptop_20.png"
  77. theme.widget_mem        = "/usr/share/awesome/themes/dot/wibox_icons/ruler_13.png"
  78. theme.widget_net_up     = "/usr/share/awesome/themes/dot/wibox_icons/arrow_up_13.png"
  79. theme.widget_net_down   = "/usr/share/awesome/themes/dot/wibox_icons/arrow_down_13.png"
  80. theme.widget_batt       = "/usr/share/awesome/themes/dot/wibox_icons/flash_13.png"
  81. theme.widget_vol        = "/usr/share/awesome/themes/dot/wibox_icons/sound_13.png"
  82. theme.widget_fshome     = "/usr/share/awesome/themes/dot/wibox_icons/home_13.png"
  83. theme.widget_fsroot     = "/usr/share/awesome/themes/dot/wibox_icons/storage_13.png"
  84. theme.widget_cpu        = "/usr/share/awesome/themes/dot/wibox_icons/on_off_13.png"
  85. -----------------------
  86. -- The menu icon
  87. theme.awesome_icon = "/usr/share/awesome/themes/dot/wibox_icons/sf.png"
  88.  
  89. return theme
  90. -- vim: filetype=lua:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:textwidth=80
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement