Advertisement
Guest User

theme.lua

a guest
Jun 21st, 2015
287
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 4.34 KB | None | 0 0
  1. theme                               = {}
  2.  
  3. themes_dir                          = os.getenv("HOME") .. "/.config/awesome/themes/powerarrow-darker"
  4. theme.wallpaper                     = themes_dir .. "/wall.jpg"
  5. theme.awesome_icon                  = themes_dir .. "/icons/awesome.svg"
  6.  
  7. theme.font                          = "Terminess Powerline Bold 14"
  8. theme.fg_normal                     = "#DDDDFF"
  9. theme.fg_focus                      = "#B0C4DE"
  10. theme.fg_urgent                     = "#CC9393"
  11. theme.bg_normal                     = "#222832"
  12. theme.bg_focus                      = "#222832"
  13. theme.bg_urgent                     = theme.bg_normal
  14. theme.border_width                  =  3.5
  15. theme.border_normal                 = "#535d6c"
  16. theme.border_focus                  = "#535d6c"
  17. theme.border_marked                 = "#91231c"
  18. theme.titlebar_bg_focus             = "#FFFFFF"
  19. theme.titlebar_bg_normal            = "#FFFFFF"
  20. theme.taglist_fg_focus              = "#6495ED"
  21. theme.tasklist_bg_focus             = "#222832"
  22. theme.tasklist_fg_focus             = "#6495ED"
  23. theme.textbox_widget_margin_top     = 1
  24. theme.notify_fg                     = theme.fg_normal
  25. theme.notify_bg                     = theme.bg_normal
  26. theme.notify_border                 = theme.border_focus
  27. theme.awful_widget_height           = 14
  28. theme.awful_widget_margin_top       = 2
  29. theme.mouse_finder_color            = "#CC9393"
  30. theme.menu_height                   = "16"
  31. theme.menu_width                    = "140"
  32.  
  33. theme.menu_submenu_icon             = themes_dir .. "/icons/submenu.png"
  34. theme.taglist_squares_sel           = themes_dir .. "/icons/square_sel.png"
  35. theme.taglist_squares_unsel         = themes_dir .. "/icons/square_unsel.png"
  36.  
  37. theme.layout_tile                   = themes_dir .. "/icons/tile.svg"
  38. theme.layout_tilegaps               = themes_dir .. "/icons/tilegaps.png"
  39. theme.layout_tileleft               = themes_dir .. "/icons/tileleft.svg"
  40. theme.layout_tilebottom             = themes_dir .. "/icons/tilebottom.svg"
  41. theme.layout_tiletop                = themes_dir .. "/icons/tiletop.svg"
  42. theme.layout_fairv                  = themes_dir .. "/icons/fair.svg"
  43. theme.layout_fairh                  = themes_dir .. "/icons/fair.svg"
  44. theme.layout_spiral                 = themes_dir .. "/icons/spiral.png"
  45. theme.layout_dwindle                = themes_dir .. "/icons/dwindle.png"
  46. theme.layout_max                    = themes_dir .. "/icons/max.svg"
  47. theme.layout_fullscreen             = themes_dir .. "/icons/fullscreen.svg"
  48. theme.layout_magnifier              = themes_dir .. "/icons/magnifier.png"
  49. theme.layout_floating               = themes_dir .. "/icons/floating.svg"
  50. theme.layouts_usermap               = themes_dir .. "/icons/map.svg"
  51.  
  52. theme.arrl                          = themes_dir .. "/icons/arrl.png"
  53. theme.arrl_r                        = themes_dir .. "/icons/arrl_r.png"
  54. theme.arrl_dl                       = themes_dir .. "/icons/arrl_dl.png"
  55. theme.arrl_ld                       = themes_dir .. "/icons/arrl_ld.png"
  56.  
  57. theme.widget_ac                     = themes_dir .. "/icons/ac.png"
  58. theme.widget_battery                = themes_dir .. "/icons/battery.png"
  59. theme.widget_battery_low            = themes_dir .. "/icons/battery_low.png"
  60. theme.widget_battery_empty          = themes_dir .. "/icons/battery_empty.png"
  61. theme.widget_mem                    = themes_dir .. "/icons/mem.png"
  62. theme.widget_cpu                    = themes_dir .. "/icons/cpu.png"
  63. theme.widget_temp                   = themes_dir .. "/icons/temp.png"
  64. theme.widget_net                    = themes_dir .. "/icons/net.png"
  65. theme.widget_hdd                    = themes_dir .. "/icons/hdd.png"
  66. theme.widget_music                  = themes_dir .. "/icons/note.png"
  67. theme.widget_music_on               = themes_dir .. "/icons/note_on.png"
  68. theme.widget_vol                    = themes_dir .. "/icons/vol.png"
  69. theme.widget_vol_low                = themes_dir .. "/icons/vol_low.png"
  70. theme.widget_vol_no                 = themes_dir .. "/icons/vol_no.png"
  71. theme.widget_vol_mute               = themes_dir .. "/icons/vol_mute.png"
  72. theme.widget_mail                   = themes_dir .. "/icons/mail.png"
  73. theme.widget_mail_on                = themes_dir .. "/icons/mail_on.png"
  74.  
  75. theme.layout_uselesspiral           = themes_dir .. "/icons/map.svg"
  76.  
  77. theme.tasklist_disable_icon         = true
  78.  
  79. theme.tasklist_font                 = "Snap 12"
  80.  
  81. return theme
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement