Guest User

theme.lua

a guest
Apr 24th, 2016
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 4.26 KB | None | 0 0
  1. theme                               = {}
  2. themes_dir                          = os.getenv("HOME") .. "/.config/awesome/themes/powerarrow-darker"
  3. theme.wallpaper                     = "~/Изображения/wallpaper/wallpaper.png"
  4. theme.font                          = "Fixed 9"
  5. theme.fg_normal                     = "#afb8c6"
  6. theme.fg_focus                      = "#5294e2"
  7. theme.fg_urgent                     = "#CCCCCC"
  8. theme.bg_normal                     = "#2f343f"
  9. theme.bg_focus                      = "#414857"
  10. theme.bg_urgent                     = "#2f343f"
  11. theme.border_width                  = "0"
  12. theme.border_normal                 = "#3F3F3F"
  13. theme.border_focus                  = "#7F7F7F"
  14. theme.border_marked                 = "#CC9393"
  15. theme.titlebar_bg_focus             = "#FFFFFF"
  16. theme.titlebar_bg_normal            = "#FFFFFF"
  17. theme.taglist_fg_focus              = "#5294e2"
  18. theme.tasklist_bg_focus             = theme.bg_normal
  19. theme.tasklist_fg_focus             = "#5294e2"
  20. theme.textbox_widget_margin_top     = 1
  21. theme.notify_fg                     = theme.fg_normal
  22. theme.notify_bg                     = theme.bg_normal
  23. theme.notify_border                 = theme.border_focus
  24. theme.awful_widget_height           = 14
  25. theme.awful_widget_margin_top       = 2
  26. theme.mouse_finder_color            = "#CC9393"
  27. theme.menu_height                   = "16"
  28. theme.menu_width                    = "140"
  29. theme.submenu_icon                  = themes_dir .. "/icons/submenu.png"
  30. theme.taglist_squares_sel           = themes_dir .. "/icons/square_sel.png"
  31. theme.taglist_squares_unsel         = themes_dir .. "/icons/square_unsel.png"
  32. theme.layout_tile                   = themes_dir .. "/icons/tile.png"
  33. theme.layout_tilegaps               = themes_dir .. "/icons/tilegaps.png"
  34. theme.layout_tileleft               = themes_dir .. "/icons/tileleft.png"
  35. theme.layout_tilebottom             = themes_dir .. "/icons/tilebottom.png"
  36. theme.layout_tiletop                = themes_dir .. "/icons/tiletop.png"
  37. theme.layout_fairv                  = themes_dir .. "/icons/fairv.png"
  38. theme.layout_fairh                  = themes_dir .. "/icons/fairh.png"
  39. theme.layout_spiral                 = themes_dir .. "/icons/spiral.png"
  40. theme.layout_dwindle                = themes_dir .. "/icons/dwindle.png"
  41. theme.layout_max                    = themes_dir .. "/icons/max.png"
  42. theme.layout_fullscreen             = themes_dir .. "/icons/fullscreen.png"
  43. theme.layout_magnifier              = themes_dir .. "/icons/magnifier.png"
  44. theme.layout_floating               = themes_dir .. "/icons/floating.png"
  45. theme.arrl                          = themes_dir .. "/icons/arrl.png"
  46. theme.arrl_dl                       = themes_dir .. "/icons/arrl_dl.png"
  47. theme.arrl_ld                       = themes_dir .. "/icons/arrl_ld.png"
  48. theme.widget_ac                     = themes_dir .. "/icons/ac.png"
  49. theme.widget_battery                = themes_dir .. "/icons/battery.png"
  50. theme.widget_battery_low            = themes_dir .. "/icons/battery_low.png"
  51. theme.widget_battery_empty          = themes_dir .. "/icons/battery_empty.png"
  52. theme.widget_mem                    = themes_dir .. "/icons/mem.png"
  53. theme.widget_cpu                    = themes_dir .. "/icons/cpu.png"
  54. theme.widget_temp                   = themes_dir .. "/icons/temp.png"
  55. theme.widget_net                    = themes_dir .. "/icons/net.png"
  56. theme.widget_hdd                    = themes_dir .. "/icons/hdd.png"
  57. theme.widget_music                  = themes_dir .. "/icons/note.png"
  58. theme.widget_music_on               = themes_dir .. "/icons/note_on.png"
  59. theme.widget_vol                    = themes_dir .. "/icons/vol.png"
  60. theme.widget_vol_low                = themes_dir .. "/icons/vol_low.png"
  61. theme.widget_vol_no                 = themes_dir .. "/icons/vol_no.png"
  62. theme.widget_vol_mute               = themes_dir .. "/icons/vol_mute.png"
  63. theme.widget_mail                   = themes_dir .. "/icons/mail.png"
  64. theme.widget_mail_on                = themes_dir .. "/icons/mail_on.png"
  65. theme.tasklist_disable_icon         = true
  66. theme.tasklist_sticky               = ""
  67. theme.tasklist_ontop                = ""
  68. theme.tasklist_floating             = ""
  69. theme.tasklist_maximized_horizontal = ""
  70. theme.tasklist_maximized_vertical   = ""
  71.  
  72. return theme
Add Comment
Please, Sign In to add comment