holo: titlebars #129
|
@ -156,7 +156,7 @@ mailwidget = lain.widgets.imap({
|
||||||
]]
|
]]
|
||||||
|
|
||||||
-- MPD
|
-- MPD
|
||||||
mpd_icon = wibox.widget.imagebox(beautiful.mpd)
|
mpd_icon = awful.widget.launcher({ image = beautiful.mpd, command = musicplr })
|
||||||
prev_icon = wibox.widget.imagebox(beautiful.prev)
|
prev_icon = wibox.widget.imagebox(beautiful.prev)
|
||||||
next_icon = wibox.widget.imagebox(beautiful.nex)
|
next_icon = wibox.widget.imagebox(beautiful.nex)
|
||||||
stop_icon = wibox.widget.imagebox(beautiful.stop)
|
stop_icon = wibox.widget.imagebox(beautiful.stop)
|
||||||
|
@ -189,8 +189,6 @@ musicwidget = wibox.container.margin(musicbg, 0, 0, 5, 5)
|
||||||
|
|
||||||
musicwidget:buttons(awful.util.table.join(awful.button({ }, 1,
|
musicwidget:buttons(awful.util.table.join(awful.button({ }, 1,
|
||||||
function () awful.spawn.with_shell(musicplr) end)))
|
function () awful.spawn.with_shell(musicplr) end)))
|
||||||
mpd_icon:buttons(awful.util.table.join(awful.button({ }, 1,
|
|
||||||
function () awful.spawn.with_shell(musicplr) end)))
|
|
||||||
prev_icon:buttons(awful.util.table.join(awful.button({}, 1,
|
prev_icon:buttons(awful.util.table.join(awful.button({}, 1,
|
||||||
function ()
|
function ()
|
||||||
awful.spawn.with_shell("mpc prev || ncmpc prev || pms prev")
|
awful.spawn.with_shell("mpc prev || ncmpc prev || pms prev")
|
||||||
|
@ -800,7 +798,7 @@ awful.rules.rules = {
|
||||||
|
|
||||||
-- Titlebars
|
-- Titlebars
|
||||||
{ rule_any = { type = { "dialog", "normal" } },
|
{ rule_any = { type = { "dialog", "normal" } },
|
||||||
properties = { titlebars_enabled = false } },
|
properties = { titlebars_enabled = true } },
|
||||||
|
|
||||||
-- Set Firefox to always map on the first tag on screen 1.
|
-- Set Firefox to always map on the first tag on screen 1.
|
||||||
{ rule = { class = "Firefox" },
|
{ rule = { class = "Firefox" },
|
||||||
|
|
BIN
themes/holo/icons/titlebar/close_focus.png
Normal file
After Width: | Height: | Size: 1.3 KiB |
BIN
themes/holo/icons/titlebar/close_normal.png
Normal file
After Width: | Height: | Size: 1.4 KiB |
BIN
themes/holo/icons/titlebar/floating_focus_active.png
Normal file
After Width: | Height: | Size: 491 B |
BIN
themes/holo/icons/titlebar/floating_focus_inactive.png
Normal file
After Width: | Height: | Size: 350 B |
BIN
themes/holo/icons/titlebar/floating_normal_active.png
Normal file
After Width: | Height: | Size: 492 B |
BIN
themes/holo/icons/titlebar/floating_normal_inactive.png
Normal file
After Width: | Height: | Size: 350 B |
BIN
themes/holo/icons/titlebar/maximized_focus_active.png
Normal file
After Width: | Height: | Size: 696 B |
BIN
themes/holo/icons/titlebar/maximized_focus_inactive.png
Normal file
After Width: | Height: | Size: 719 B |
BIN
themes/holo/icons/titlebar/maximized_normal_active.png
Normal file
After Width: | Height: | Size: 693 B |
BIN
themes/holo/icons/titlebar/maximized_normal_inactive.png
Normal file
After Width: | Height: | Size: 695 B |
BIN
themes/holo/icons/titlebar/minimize_focus.png
Normal file
After Width: | Height: | Size: 277 B |
BIN
themes/holo/icons/titlebar/minimize_normal.png
Normal file
After Width: | Height: | Size: 272 B |
BIN
themes/holo/icons/titlebar/ontop_focus_active.png
Normal file
After Width: | Height: | Size: 609 B |
BIN
themes/holo/icons/titlebar/ontop_focus_inactive.png
Normal file
After Width: | Height: | Size: 756 B |
BIN
themes/holo/icons/titlebar/ontop_normal_active.png
Normal file
After Width: | Height: | Size: 619 B |
BIN
themes/holo/icons/titlebar/ontop_normal_inactive.png
Normal file
After Width: | Height: | Size: 769 B |
BIN
themes/holo/icons/titlebar/sticky_focus_active.png
Normal file
After Width: | Height: | Size: 717 B |
BIN
themes/holo/icons/titlebar/sticky_focus_inactive.png
Normal file
After Width: | Height: | Size: 937 B |
BIN
themes/holo/icons/titlebar/sticky_normal_active.png
Normal file
After Width: | Height: | Size: 726 B |
BIN
themes/holo/icons/titlebar/sticky_normal_inactive.png
Normal file
After Width: | Height: | Size: 981 B |
|
@ -6,70 +6,93 @@
|
||||||
|
|
||||||
--]]
|
--]]
|
||||||
|
|
||||||
local theme = {}
|
local theme = {}
|
||||||
|
|
||||||
theme.icon_dir = os.getenv("HOME") .. "/.config/awesome/themes/holo/icons"
|
theme.icon_dir = os.getenv("HOME") .. "/.config/awesome/themes/holo/icons"
|
||||||
theme.wallpaper = os.getenv("HOME") .. "/.config/awesome/themes/holo/wall.png"
|
theme.wallpaper = os.getenv("HOME") .. "/.config/awesome/themes/holo/wall.png"
|
||||||
|
|
||||||
theme.font = "Roboto Bold 10"
|
theme.font = "Roboto Bold 10"
|
||||||
theme.taglist_font = "Roboto Condensed Regular 8"
|
theme.taglist_font = "Roboto Condensed Regular 8"
|
||||||
theme.fg_normal = "#FFFFFF"
|
|
||||||
theme.fg_focus = "#0099CC"
|
|
||||||
theme.bg_focus = "#303030"
|
|
||||||
theme.bg_normal = "#242424"
|
|
||||||
theme.fg_urgent = "#CC9393"
|
|
||||||
theme.bg_urgent = "#006B8E"
|
|
||||||
theme.border_width = 3
|
|
||||||
theme.border_normal = "#252525"
|
|
||||||
theme.border_focus = "#0099CC"
|
|
||||||
theme.taglist_fg_focus = "#FFFFFF"
|
|
||||||
theme.tasklist_bg_normal = "#222222"
|
|
||||||
theme.tasklist_fg_focus = "#4CB7DB"
|
|
||||||
theme.menu_height = 20
|
|
||||||
theme.menu_width = 160
|
|
||||||
|
|
||||||
theme.awesome_icon = theme.icon_dir .. "/awesome_icon.png"
|
theme.fg_normal = "#FFFFFF"
|
||||||
theme.awesome_icon_white = theme.icon_dir .. "/awesome_icon_white.png"
|
theme.fg_focus = "#0099CC"
|
||||||
theme.vol_bg = theme.icon_dir .. "/vol_bg.png"
|
theme.bg_focus = "#303030"
|
||||||
theme.taglist_squares_sel = theme.icon_dir .. "/square_sel.png"
|
theme.bg_normal = "#242424"
|
||||||
theme.taglist_squares_unsel = theme.icon_dir .. "/square_unsel.png"
|
theme.fg_urgent = "#CC9393"
|
||||||
theme.spr_small = theme.icon_dir .. "/spr_small.png"
|
theme.bg_urgent = "#006B8E"
|
||||||
theme.spr_very_small = theme.icon_dir .. "/spr_very_small.png"
|
theme.border_width = 3
|
||||||
theme.spr_right = theme.icon_dir .. "/spr_right.png"
|
theme.border_normal = "#252525"
|
||||||
theme.spr_bottom_right = theme.icon_dir .. "/spr_bottom_right.png"
|
theme.border_focus = "#0099CC"
|
||||||
theme.spr_left = theme.icon_dir .. "/spr_left.png"
|
theme.taglist_fg_focus = "#FFFFFF"
|
||||||
theme.bar = theme.icon_dir .. "/bar.png"
|
theme.tasklist_bg_normal = "#222222"
|
||||||
theme.bottom_bar = theme.icon_dir .. "/bottom_bar.png"
|
theme.tasklist_fg_focus = "#4CB7DB"
|
||||||
theme.mpd = theme.icon_dir .. "/mpd.png"
|
|
||||||
theme.mpd_on = theme.icon_dir .. "/mpd_on.png"
|
|
||||||
theme.prev = theme.icon_dir .. "/prev.png"
|
|
||||||
theme.nex = theme.icon_dir .. "/next.png"
|
|
||||||
theme.stop = theme.icon_dir .. "/stop.png"
|
|
||||||
theme.pause = theme.icon_dir .. "/pause.png"
|
|
||||||
theme.play = theme.icon_dir .. "/play.png"
|
|
||||||
theme.clock = theme.icon_dir .. "/clock.png"
|
|
||||||
theme.calendar = theme.icon_dir .. "/cal.png"
|
|
||||||
theme.cpu = theme.icon_dir .. "/cpu.png"
|
|
||||||
theme.net_up = theme.icon_dir .. "/net_up.png"
|
|
||||||
theme.net_down = theme.icon_dir .. "/net_down.png"
|
|
||||||
|
|
||||||
theme.layout_tile = theme.icon_dir .. "/tile.png"
|
theme.menu_height = 20
|
||||||
theme.layout_tilegaps = theme.icon_dir .. "/tilegaps.png"
|
theme.menu_width = 160
|
||||||
theme.layout_tileleft = theme.icon_dir .. "/tileleft.png"
|
|
||||||
theme.layout_tilebottom = theme.icon_dir .. "/tilebottom.png"
|
|
||||||
theme.layout_tiletop = theme.icon_dir .. "/tiletop.png"
|
|
||||||
theme.layout_fairv = theme.icon_dir .. "/fairv.png"
|
|
||||||
theme.layout_fairh = theme.icon_dir .. "/fairh.png"
|
|
||||||
theme.layout_spiral = theme.icon_dir .. "/spiral.png"
|
|
||||||
theme.layout_dwindle = theme.icon_dir .. "/dwindle.png"
|
|
||||||
theme.layout_max = theme.icon_dir .. "/max.png"
|
|
||||||
theme.layout_fullscreen = theme.icon_dir .. "/fullscreen.png"
|
|
||||||
theme.layout_magnifier = theme.icon_dir .. "/magnifier.png"
|
|
||||||
theme.layout_floating = theme.icon_dir .. "/floating.png"
|
|
||||||
|
|
||||||
theme.tasklist_plain_task_name = true
|
theme.awesome_icon = theme.icon_dir .. "/awesome_icon.png"
|
||||||
theme.tasklist_disable_icon = true
|
theme.awesome_icon_white = theme.icon_dir .. "/awesome_icon_white.png"
|
||||||
|
theme.vol_bg = theme.icon_dir .. "/vol_bg.png"
|
||||||
|
theme.taglist_squares_sel = theme.icon_dir .. "/square_sel.png"
|
||||||
|
theme.taglist_squares_unsel = theme.icon_dir .. "/square_unsel.png"
|
||||||
|
theme.spr_small = theme.icon_dir .. "/spr_small.png"
|
||||||
|
theme.spr_very_small = theme.icon_dir .. "/spr_very_small.png"
|
||||||
|
theme.spr_right = theme.icon_dir .. "/spr_right.png"
|
||||||
|
theme.spr_bottom_right = theme.icon_dir .. "/spr_bottom_right.png"
|
||||||
|
theme.spr_left = theme.icon_dir .. "/spr_left.png"
|
||||||
|
theme.bar = theme.icon_dir .. "/bar.png"
|
||||||
|
theme.bottom_bar = theme.icon_dir .. "/bottom_bar.png"
|
||||||
|
theme.mpd = theme.icon_dir .. "/mpd.png"
|
||||||
|
theme.mpd_on = theme.icon_dir .. "/mpd_on.png"
|
||||||
|
theme.prev = theme.icon_dir .. "/prev.png"
|
||||||
|
theme.nex = theme.icon_dir .. "/next.png"
|
||||||
|
theme.stop = theme.icon_dir .. "/stop.png"
|
||||||
|
theme.pause = theme.icon_dir .. "/pause.png"
|
||||||
|
theme.play = theme.icon_dir .. "/play.png"
|
||||||
|
theme.clock = theme.icon_dir .. "/clock.png"
|
||||||
|
theme.calendar = theme.icon_dir .. "/cal.png"
|
||||||
|
theme.cpu = theme.icon_dir .. "/cpu.png"
|
||||||
|
theme.net_up = theme.icon_dir .. "/net_up.png"
|
||||||
|
theme.net_down = theme.icon_dir .. "/net_down.png"
|
||||||
|
|
||||||
theme.useless_gap = 4
|
theme.layout_tile = theme.icon_dir .. "/tile.png"
|
||||||
|
theme.layout_tilegaps = theme.icon_dir .. "/tilegaps.png"
|
||||||
|
theme.layout_tileleft = theme.icon_dir .. "/tileleft.png"
|
||||||
|
theme.layout_tilebottom = theme.icon_dir .. "/tilebottom.png"
|
||||||
|
theme.layout_tiletop = theme.icon_dir .. "/tiletop.png"
|
||||||
|
theme.layout_fairv = theme.icon_dir .. "/fairv.png"
|
||||||
|
theme.layout_fairh = theme.icon_dir .. "/fairh.png"
|
||||||
|
theme.layout_spiral = theme.icon_dir .. "/spiral.png"
|
||||||
|
theme.layout_dwindle = theme.icon_dir .. "/dwindle.png"
|
||||||
|
theme.layout_max = theme.icon_dir .. "/max.png"
|
||||||
|
theme.layout_fullscreen = theme.icon_dir .. "/fullscreen.png"
|
||||||
|
theme.layout_magnifier = theme.icon_dir .. "/magnifier.png"
|
||||||
|
theme.layout_floating = theme.icon_dir .. "/floating.png"
|
||||||
|
|
||||||
|
theme.tasklist_plain_task_name = true
|
||||||
|
theme.tasklist_disable_icon = true
|
||||||
|
|
||||||
|
theme.useless_gap = 4
|
||||||
|
|
||||||
|
theme.titlebar_close_button_normal = theme.icon_dir.."/titlebar/close_normal.png"
|
||||||
|
theme.titlebar_close_button_focus = theme.icon_dir.."/titlebar/close_focus.png"
|
||||||
|
theme.titlebar_minimize_button_normal = theme.icon_dir.."/titlebar/minimize_normal.png"
|
||||||
|
theme.titlebar_minimize_button_focus = theme.icon_dir.."/titlebar/minimize_focus.png"
|
||||||
|
theme.titlebar_ontop_button_normal_inactive = theme.icon_dir.."/titlebar/ontop_normal_inactive.png"
|
||||||
|
theme.titlebar_ontop_button_focus_inactive = theme.icon_dir.."/titlebar/ontop_focus_inactive.png"
|
||||||
|
theme.titlebar_ontop_button_normal_active = theme.icon_dir.."/titlebar/ontop_normal_active.png"
|
||||||
|
theme.titlebar_ontop_button_focus_active = theme.icon_dir.."/titlebar/ontop_focus_active.png"
|
||||||
|
theme.titlebar_sticky_button_normal_inactive = theme.icon_dir.."/titlebar/sticky_normal_inactive.png"
|
||||||
|
theme.titlebar_sticky_button_focus_inactive = theme.icon_dir.."/titlebar/sticky_focus_inactive.png"
|
||||||
|
theme.titlebar_sticky_button_normal_active = theme.icon_dir.."/titlebar/sticky_normal_active.png"
|
||||||
|
theme.titlebar_sticky_button_focus_active = theme.icon_dir.."/titlebar/sticky_focus_active.png"
|
||||||
|
theme.titlebar_floating_button_normal_inactive = theme.icon_dir.."/titlebar/floating_normal_inactive.png"
|
||||||
|
theme.titlebar_floating_button_focus_inactive = theme.icon_dir.."/titlebar/floating_focus_inactive.png"
|
||||||
|
theme.titlebar_floating_button_normal_active = theme.icon_dir.."/titlebar/floating_normal_active.png"
|
||||||
|
theme.titlebar_floating_button_focus_active = theme.icon_dir.."/titlebar/floating_focus_active.png"
|
||||||
|
theme.titlebar_maximized_button_normal_inactive = theme.icon_dir.."/titlebar/maximized_normal_inactive.png"
|
||||||
|
theme.titlebar_maximized_button_focus_inactive = theme.icon_dir.."/titlebar/maximized_focus_inactive.png"
|
||||||
|
theme.titlebar_maximized_button_normal_active = theme.icon_dir.."/titlebar/maximized_normal_active.png"
|
||||||
|
theme.titlebar_maximized_button_focus_active = theme.icon_dir.."/titlebar/maximized_focus_active.png"
|
||||||
|
|
||||||
return theme
|
return theme
|
||||||
|
|
Before Width: | Height: | Size: 330 KiB After Width: | Height: | Size: 658 KiB |