1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 | -- Kent's theme or something.
--{{{ Main
require("awful.util")
-- require("beautiful")
theme = {}
home = os.getenv("HOME")
config = awful.util.getdir("config")
shared = "/usr/share/awesome"
if not awful.util.file_readable(shared .. "/icons/awesome16.png") then
shared = "/usr/share/local/awesome"
end
sharedicons = shared .. "/icons"
sharedthemes = shared .. "/themes"
themes = config .. "/themes"
themename = "/metro"
if not awful.util.file_readable(themes .. themename .. "/theme.lua") then
themes = sharedthemes
end
themedir = "/home/erkin/.config/awesome/metro"
theme.awesome_icon = themedir .. "/awesome-icon.png"
theme.wallpaper_cmd = { "awsetbg /home/erkin/media/resim/arkaplanlar/pinkieshy.png" }
--}}}
theme.font = "ubuntu 11"
theme.bg_normal = "#262626"
theme.bg_focus = "#262626"
theme.bg_urgent = "#F4B6D1"
theme.bg_minimize = "#1E2320"
theme.fg_normal = "#DCDCCC"
theme.fg_focus = "#17A8E5"
theme.fg_urgent = "#000001"
theme.fg_minimize = "#DCDCCC"
theme.border_width = "0"
theme.border_normal = "#3F3F3F"
theme.border_focus = "#6F6F6F"
theme.border_marked = "#CC9393"
theme.taglist_bg_focus = "#17A8E5"
theme.taglist_fg_focus = "#DCDCCC"
theme.titlebar_bg_focus = "#3F3F3F"
theme.titlebar_bg_normal = "#3F3F3F"
-- Display the taglist squares
-- theme.taglist_squares_sel = themedir .. ""
-- theme.taglist_squares_unsel = themedir .. ""
theme.menu_border_width = 0
theme.menu_bg_focus = "#17A8E5"
theme.menu_fg_focus = "#DCDCCC"
-- Layout icons
theme.layout_fairh = themedir .. "/layouts/fairh.png"
theme.layout_fairv = themedir .. "/layouts/fairv.png"
theme.layout_floating = themedir .. "/layouts/floating.png"
theme.layout_magnifier = themedir .. "/layouts/magnifier.png"
theme.layout_max = themedir .. "/layouts/max.png"
theme.layout_fullscreen = themedir .. "/layouts/fullscreen.png"
theme.layout_tilebottom = themedir .. "/layouts/tilebottom.png"
theme.layout_tileleft = themedir .. "/layouts/tileleft.png"
theme.layout_tile = themedir .. "/layouts/tile.png"
theme.layout_tiletop = themedir .. "/layouts/tiletop.png"
theme.layout_spiral = themedir .. "/layouts/spiral.png"
theme.layout_dwindle = themedir .. "/layouts/dwindle.png"
-- Widget icons
-- theme.widget_sep = themes .. "/icons/metro/seperator.png"
-- theme.widget_cpu = themes .. "/icons/metro/cpu.png"
-- theme.widget_temp = themes .. "/icons/metro/temp.png"
-- theme.widget_mem = themes .. "/icons/metro/mem.png"
-- theme.widget_spkr = themes .. "/icons/metro/spkr.png"
-- theme.widget_head = themes .. "/icons/metro/phones.png"
-- theme.widget_netdown = themes .. "/icons/metro/net_down.png"
-- theme.widget_netup = themes .. "/icons/metro/net_up.png"
-- theme.widget_mail = themes .. "/icons/metro/mail.png"
-- theme.widget_newmail = themes .. "/icons/metro/newmail.png"
-- theme.widget_pacman = themes .. "/icons/metro/pacman.png"
-- theme.widget_newpackage = themes .. "/icons/metro/newpackage.png"
-- theme.widget_batt_full = themes .. "/icons/metro/bat_full.png"
-- theme.widget_batt_low = themes .. "/icons/metro/bat_low.png"
-- theme.widget_batt_empty = themes .. "/icons/metro/bat_empty.png"
-- theme.widget_clock = themes .. "/icons/metro/clock.png"
-- theme.widget_mpd = themes .. "/icons/metro/note.png"
return theme
|
x