1
0
Fork 0
mirror of https://github.com/lcpz/awesome-copycats.git synced 2024-10-22 20:41:22 +00:00
awesome-copycats/themes/multicolor/theme.lua

77 lines
3.7 KiB
Lua
Raw Normal View History

2015-08-16 12:01:45 +00:00
2013-09-13 19:20:22 +00:00
--[[
Multicolor Awesome WM config 2.0
github.com/copycat-killer
--]]
2013-03-15 13:11:21 +00:00
2017-01-08 13:19:51 +00:00
local theme = {}
2013-03-15 13:11:21 +00:00
2013-09-13 19:20:22 +00:00
theme.confdir = os.getenv("HOME") .. "/.config/awesome/themes/multicolor"
theme.wallpaper = theme.confdir .. "/wall.png"
2013-03-15 13:11:21 +00:00
2013-09-13 19:20:22 +00:00
theme.font = "Terminus 8"
--theme.taglist_font =
theme.menu_bg_normal = "#000000"
theme.menu_bg_focus = "#000000"
theme.bg_normal = "#000000"
theme.bg_focus = "#000000"
theme.bg_urgent = "#000000"
theme.fg_normal = "#aaaaaa"
theme.fg_focus = "#ff8c00"
theme.fg_urgent = "#af1d18"
theme.fg_minimize = "#ffffff"
theme.border_width = "1"
theme.border_normal = "#1c2022"
theme.border_focus = "#606060"
theme.border_marked = "#3ca4d8"
2017-01-08 13:19:51 +00:00
theme.menu_border_width = 0
theme.menu_width = 130
2013-09-13 19:20:22 +00:00
theme.menu_fg_normal = "#aaaaaa"
theme.menu_fg_focus = "#ff8c00"
theme.menu_bg_normal = "#050505dd"
theme.menu_bg_focus = "#050505dd"
2013-03-15 13:11:21 +00:00
theme.menu_submenu_icon = theme.confdir .. "/icons/submenu.png"
2013-09-13 19:20:22 +00:00
theme.widget_temp = theme.confdir .. "/icons/temp.png"
theme.widget_uptime = theme.confdir .. "/icons/ac.png"
theme.widget_cpu = theme.confdir .. "/icons/cpu.png"
theme.widget_weather = theme.confdir .. "/icons/dish.png"
theme.widget_fs = theme.confdir .. "/icons/fs.png"
theme.widget_mem = theme.confdir .. "/icons/mem.png"
theme.widget_fs = theme.confdir .. "/icons/fs.png"
theme.widget_note = theme.confdir .. "/icons/note.png"
theme.widget_note_on = theme.confdir .. "/icons/note_on.png"
theme.widget_netdown = theme.confdir .. "/icons/net_down.png"
theme.widget_netup = theme.confdir .. "/icons/net_up.png"
theme.widget_mail = theme.confdir .. "/icons/mail.png"
theme.widget_batt = theme.confdir .. "/icons/bat.png"
theme.widget_clock = theme.confdir .. "/icons/clock.png"
theme.widget_vol = theme.confdir .. "/icons/spkr.png"
2013-03-15 13:11:21 +00:00
2013-09-13 19:20:22 +00:00
theme.taglist_squares_sel = theme.confdir .. "/icons/square_a.png"
theme.taglist_squares_unsel = theme.confdir .. "/icons/square_b.png"
2013-03-15 13:11:21 +00:00
2017-01-09 19:25:21 +00:00
theme.tasklist_plain_task_name = true
2013-09-13 19:20:22 +00:00
theme.tasklist_disable_icon = true
2013-03-15 13:11:21 +00:00
2013-09-13 19:20:22 +00:00
theme.layout_tile = theme.confdir .. "/icons/tile.png"
theme.layout_tilegaps = theme.confdir .. "/icons/tilegaps.png"
theme.layout_tileleft = theme.confdir .. "/icons/tileleft.png"
theme.layout_tilebottom = theme.confdir .. "/icons/tilebottom.png"
theme.layout_tiletop = theme.confdir .. "/icons/tiletop.png"
theme.layout_fairv = theme.confdir .. "/icons/fairv.png"
theme.layout_fairh = theme.confdir .. "/icons/fairh.png"
theme.layout_spiral = theme.confdir .. "/icons/spiral.png"
theme.layout_dwindle = theme.confdir .. "/icons/dwindle.png"
theme.layout_max = theme.confdir .. "/icons/max.png"
theme.layout_fullscreen = theme.confdir .. "/icons/fullscreen.png"
theme.layout_magnifier = theme.confdir .. "/icons/magnifier.png"
theme.layout_floating = theme.confdir .. "/icons/floating.png"
2013-03-15 13:11:21 +00:00
2017-01-08 13:19:51 +00:00
theme.useless_gap = 0
2013-03-15 13:11:21 +00:00
return theme