diff --git a/rc.lua.blackburn b/rc.lua.blackburn index 0b7a9af..a1a630b 100644 --- a/rc.lua.blackburn +++ b/rc.lua.blackburn @@ -279,6 +279,14 @@ local barcolor = gears.color({ to = { barheight, barheight }, stops = { {0, beautiful.bg_focus }, {0.8, beautiful.border_normal}, {1, "#1A1A1A"} } }) +beautiful.titlebar_bg = barcolor + +beautiful.titlebar_bg_focus = gears.color({ + type = "linear", + from = { barheight, 0 }, + to = { barheight, barheight }, + stops = { {0, beautiful.bg_normal}, {0.5, beautiful.border_normal}, {1, "#492417"} } +}) -- Re-set wallpaper when a screen's geometry changes (e.g. different resolution) screen.connect_signal("property::geometry", set_wallpaper) @@ -295,7 +303,7 @@ awful.screen.connect_for_each_screen(function(s) awful.layout.suit.tile, awful.layout.suit.fair, awful.layout.suit.tile.left, - awful.layout.suit.tile.top + awful.layout.suit.tile.top, }) -- Create a promptbox for each screen @@ -759,6 +767,7 @@ client.connect_signal("request::titlebars", function(c) layout = wibox.layout.fixed.horizontal() }, layout = wibox.layout.align.horizontal + } end) diff --git a/rc.lua.multicolor b/rc.lua.multicolor index 5746eca..b6ac7cf 100644 --- a/rc.lua.multicolor +++ b/rc.lua.multicolor @@ -588,28 +588,28 @@ globalkeys = awful.util.table.join( awful.key({ altkey }, "Up", function () os.execute(string.format("amixer set %s 1%%+", volume.channel)) - volume.notify() + volume.update() end), awful.key({ altkey }, "Down", function () os.execute(string.format("amixer set %s 1%%-", volume.channel)) - volume.notify() + volume.update() end), awful.key({ altkey }, "m", function () os.execute(string.format("amixer set %s toggle", volume.togglechannel or volume.channel)) - volume.notify() + volume.update() end), awful.key({ altkey, "Control" }, "m", function () os.execute(string.format("amixer set %s 100%%", volume.channel)) - volume.notify() + volume.update() end), awful.key({ altkey, "Control" }, "0", function () os.execute(string.format("amixer -q set %s 0%%", volume.channel)) - volume.notify() + volume.update() end), -- MPD control diff --git a/themes/blackburn/icons/titlebar/close_focus.png b/themes/blackburn/icons/titlebar/close_focus.png new file mode 100644 index 0000000..e835562 Binary files /dev/null and b/themes/blackburn/icons/titlebar/close_focus.png differ diff --git a/themes/blackburn/icons/titlebar/close_normal.png b/themes/blackburn/icons/titlebar/close_normal.png new file mode 100644 index 0000000..54b26f8 Binary files /dev/null and b/themes/blackburn/icons/titlebar/close_normal.png differ diff --git a/themes/blackburn/icons/titlebar/floating_focus_active.png b/themes/blackburn/icons/titlebar/floating_focus_active.png new file mode 100644 index 0000000..7f01323 Binary files /dev/null and b/themes/blackburn/icons/titlebar/floating_focus_active.png differ diff --git a/themes/blackburn/icons/titlebar/floating_focus_inactive.png b/themes/blackburn/icons/titlebar/floating_focus_inactive.png new file mode 100644 index 0000000..47f19f6 Binary files /dev/null and b/themes/blackburn/icons/titlebar/floating_focus_inactive.png differ diff --git a/themes/blackburn/icons/titlebar/floating_normal_active.png b/themes/blackburn/icons/titlebar/floating_normal_active.png new file mode 100644 index 0000000..44b8dac Binary files /dev/null and b/themes/blackburn/icons/titlebar/floating_normal_active.png differ diff --git a/themes/blackburn/icons/titlebar/floating_normal_inactive.png b/themes/blackburn/icons/titlebar/floating_normal_inactive.png new file mode 100644 index 0000000..98f7f1d Binary files /dev/null and b/themes/blackburn/icons/titlebar/floating_normal_inactive.png differ diff --git a/themes/blackburn/icons/titlebar/maximized_focus_active.png b/themes/blackburn/icons/titlebar/maximized_focus_active.png new file mode 100644 index 0000000..13c2c15 Binary files /dev/null and b/themes/blackburn/icons/titlebar/maximized_focus_active.png differ diff --git a/themes/blackburn/icons/titlebar/maximized_focus_inactive.png b/themes/blackburn/icons/titlebar/maximized_focus_inactive.png new file mode 100644 index 0000000..bce1d00 Binary files /dev/null and b/themes/blackburn/icons/titlebar/maximized_focus_inactive.png differ diff --git a/themes/blackburn/icons/titlebar/maximized_normal_active.png b/themes/blackburn/icons/titlebar/maximized_normal_active.png new file mode 100644 index 0000000..00ae107 Binary files /dev/null and b/themes/blackburn/icons/titlebar/maximized_normal_active.png differ diff --git a/themes/blackburn/icons/titlebar/maximized_normal_inactive.png b/themes/blackburn/icons/titlebar/maximized_normal_inactive.png new file mode 100644 index 0000000..2e56d32 Binary files /dev/null and b/themes/blackburn/icons/titlebar/maximized_normal_inactive.png differ diff --git a/themes/blackburn/icons/titlebar/ontop_focus_active.png b/themes/blackburn/icons/titlebar/ontop_focus_active.png new file mode 100644 index 0000000..1d82a6e Binary files /dev/null and b/themes/blackburn/icons/titlebar/ontop_focus_active.png differ diff --git a/themes/blackburn/icons/titlebar/ontop_focus_inactive.png b/themes/blackburn/icons/titlebar/ontop_focus_inactive.png new file mode 100644 index 0000000..2f3a2be Binary files /dev/null and b/themes/blackburn/icons/titlebar/ontop_focus_inactive.png differ diff --git a/themes/blackburn/icons/titlebar/ontop_normal_active.png b/themes/blackburn/icons/titlebar/ontop_normal_active.png new file mode 100644 index 0000000..499dfbf Binary files /dev/null and b/themes/blackburn/icons/titlebar/ontop_normal_active.png differ diff --git a/themes/blackburn/icons/titlebar/ontop_normal_inactive.png b/themes/blackburn/icons/titlebar/ontop_normal_inactive.png new file mode 100644 index 0000000..a9a3206 Binary files /dev/null and b/themes/blackburn/icons/titlebar/ontop_normal_inactive.png differ diff --git a/themes/blackburn/icons/titlebar/sticky_focus_active.png b/themes/blackburn/icons/titlebar/sticky_focus_active.png new file mode 100644 index 0000000..0d56a16 Binary files /dev/null and b/themes/blackburn/icons/titlebar/sticky_focus_active.png differ diff --git a/themes/blackburn/icons/titlebar/sticky_focus_inactive.png b/themes/blackburn/icons/titlebar/sticky_focus_inactive.png new file mode 100644 index 0000000..5493d8e Binary files /dev/null and b/themes/blackburn/icons/titlebar/sticky_focus_inactive.png differ diff --git a/themes/blackburn/icons/titlebar/sticky_normal_active.png b/themes/blackburn/icons/titlebar/sticky_normal_active.png new file mode 100644 index 0000000..a150154 Binary files /dev/null and b/themes/blackburn/icons/titlebar/sticky_normal_active.png differ diff --git a/themes/blackburn/icons/titlebar/sticky_normal_inactive.png b/themes/blackburn/icons/titlebar/sticky_normal_inactive.png new file mode 100644 index 0000000..7e6c99b Binary files /dev/null and b/themes/blackburn/icons/titlebar/sticky_normal_inactive.png differ diff --git a/themes/blackburn/icons/uselesstile.png b/themes/blackburn/icons/uselesstile.png deleted file mode 100644 index 69fed1a..0000000 Binary files a/themes/blackburn/icons/uselesstile.png and /dev/null differ diff --git a/themes/blackburn/icons/uselesstileleft.png b/themes/blackburn/icons/uselesstileleft.png deleted file mode 100644 index a77c177..0000000 Binary files a/themes/blackburn/icons/uselesstileleft.png and /dev/null differ diff --git a/themes/blackburn/icons/uselesstiletop.png b/themes/blackburn/icons/uselesstiletop.png deleted file mode 100644 index 8f5afa9..0000000 Binary files a/themes/blackburn/icons/uselesstiletop.png and /dev/null differ diff --git a/themes/blackburn/theme.lua b/themes/blackburn/theme.lua index 423049e..7942556 100644 --- a/themes/blackburn/theme.lua +++ b/themes/blackburn/theme.lua @@ -6,52 +6,69 @@ --]] -local theme = {} +local theme = {} -theme.dir = os.getenv("HOME") .. "/.config/awesome/themes/blackburn" -theme.wallpaper = theme.dir .. "/wall.png" -theme.topbar_path = "png:" .. theme.dir .. "/icons/topbar/" +theme.dir = os.getenv("HOME") .. "/.config/awesome/themes/blackburn" +theme.wallpaper = theme.dir .. "/wall.png" -theme.font = "Tamsyn 10.5" -theme.taglist_font = "Icons 10" -theme.fg_normal = "#D7D7D7" -theme.fg_focus = "#F6784F" -theme.bg_normal = "#060606" -theme.bg_focus = "#060606" -theme.fg_urgent = "#CC9393" -theme.bg_urgent = "#2A1F1E" -theme.border_width = 1 -theme.border_normal = "#0E0E0E" -theme.border_focus = "#F79372" +theme.font = "Tamsyn 10.5" +theme.taglist_font = "Icons 10" -theme.taglist_fg_focus = "#F6784F" -theme.taglist_bg_focus = "#060606" -theme.tasklist_fg_focus = "#F6784F" -theme.tasklist_bg_focus = "#060606" -theme.menu_height = 16 -theme.menu_width = 130 +theme.fg_normal = "#D7D7D7" +theme.fg_focus = "#F6784F" +theme.bg_normal = "#060606" +theme.bg_focus = "#060606" +theme.fg_urgent = "#CC9393" +theme.bg_urgent = "#2A1F1E" +theme.border_width = 1 +theme.border_normal = "#0E0E0E" +theme.border_focus = "#F79372" +theme.taglist_fg_focus = "#F6784F" +theme.taglist_bg_focus = "#060606" +theme.tasklist_fg_focus = "#F6784F" +theme.tasklist_bg_focus = "#060606" -theme.menu_submenu_icon = theme.dir .. "/icons/submenu.png" -theme.taglist_squares_sel = theme.dir .. "/icons/square_sel.png" -theme.taglist_squares_unsel = theme.dir .. "/icons/square_unsel.png" -theme.arrl_lr_pre = theme.dir .. "/icons/arrl_lr_pre.png" -theme.arrl_lr_post = theme.dir .. "/icons/arrl_lr_post.png" +theme.menu_height = 16 +theme.menu_width = 130 +theme.menu_submenu_icon = theme.dir .. "/icons/submenu.png" -theme.layout_tile = theme.dir .. "/icons/tile.png" -theme.layout_tileleft = theme.dir .. "/icons/tileleft.png" -theme.layout_tilebottom = theme.dir .. "/icons/tilebottom.png" -theme.layout_tiletop = theme.dir .. "/icons/tiletop.png" -theme.layout_fairv = theme.dir .. "/icons/fairv.png" -theme.layout_fairh = theme.dir .. "/icons/fairh.png" -theme.layout_spiral = theme.dir .. "/icons/spiral.png" -theme.layout_dwindle = theme.dir .. "/icons/dwindle.png" -theme.layout_max = theme.dir .. "/icons/max.png" -theme.layout_fullscreen = theme.dir .. "/icons/fullscreen.png" -theme.layout_magnifier = theme.dir .. "/icons/magnifier.png" -theme.layout_floating = theme.dir .. "/icons/floating.png" +theme.taglist_squares_sel = theme.dir .. "/icons/square_sel.png" +theme.taglist_squares_unsel = theme.dir .. "/icons/square_unsel.png" +theme.layout_tile = theme.dir .. "/icons/tile.png" +theme.layout_tileleft = theme.dir .. "/icons/tileleft.png" +theme.layout_tilebottom = theme.dir .. "/icons/tilebottom.png" +theme.layout_tiletop = theme.dir .. "/icons/tiletop.png" +theme.layout_fairv = theme.dir .. "/icons/fairv.png" +theme.layout_fairh = theme.dir .. "/icons/fairh.png" +theme.layout_spiral = theme.dir .. "/icons/spiral.png" +theme.layout_dwindle = theme.dir .. "/icons/dwindle.png" +theme.layout_max = theme.dir .. "/icons/max.png" +theme.layout_fullscreen = theme.dir .. "/icons/fullscreen.png" +theme.layout_magnifier = theme.dir .. "/icons/magnifier.png" +theme.layout_floating = theme.dir .. "/icons/floating.png" -theme.tasklist_plain_task_name = true -theme.tasklist_disable_icon = true -theme.useless_gap = 0 +theme.tasklist_plain_task_name = true +theme.tasklist_disable_icon = true + +theme.useless_gap = 0 + +theme.titlebar_close_button_focus = theme.dir .. "/icons/titlebar/close_focus.png" +theme.titlebar_close_button_normal = theme.dir .. "/icons/titlebar/close_normal.png" +theme.titlebar_ontop_button_focus_active = theme.dir .. "/icons/titlebar/ontop_focus_active.png" +theme.titlebar_ontop_button_normal_active = theme.dir .. "/icons/titlebar/ontop_normal_active.png" +theme.titlebar_ontop_button_focus_inactive = theme.dir .. "/icons/titlebar/ontop_focus_inactive.png" +theme.titlebar_ontop_button_normal_inactive = theme.dir .. "/icons/titlebar/ontop_normal_inactive.png" +theme.titlebar_sticky_button_focus_active = theme.dir .. "/icons/titlebar/sticky_focus_active.png" +theme.titlebar_sticky_button_normal_active = theme.dir .. "/icons/titlebar/sticky_normal_active.png" +theme.titlebar_sticky_button_focus_inactive = theme.dir .. "/icons/titlebar/sticky_focus_inactive.png" +theme.titlebar_sticky_button_normal_inactive = theme.dir .. "/icons/titlebar/sticky_normal_inactive.png" +theme.titlebar_floating_button_focus_active = theme.dir .. "/icons/titlebar/floating_focus_active.png" +theme.titlebar_floating_button_normal_active = theme.dir .. "/icons/titlebar/floating_normal_active.png" +theme.titlebar_floating_button_focus_inactive = theme.dir .. "/icons/titlebar/floating_focus_inactive.png" +theme.titlebar_floating_button_normal_inactive = theme.dir .. "/icons/titlebar/floating_normal_inactive.png" +theme.titlebar_maximized_button_focus_active = theme.dir .. "/icons/titlebar/maximized_focus_active.png" +theme.titlebar_maximized_button_normal_active = theme.dir .. "/icons/titlebar/maximized_normal_active.png" +theme.titlebar_maximized_button_focus_inactive = theme.dir .. "/icons/titlebar/maximized_focus_inactive.png" +theme.titlebar_maximized_button_normal_inactive = theme.dir .. "/icons/titlebar/maximized_normal_inactive.png" return theme diff --git a/themes/copland/theme.lua b/themes/copland/theme.lua index d4f72f1..6f0689b 100644 --- a/themes/copland/theme.lua +++ b/themes/copland/theme.lua @@ -60,31 +60,27 @@ theme.layout_fullscreen = theme.dir .. "/icons/fullscree theme.layout_magnifier = theme.dir .. "/icons/magnifier.png" theme.layout_floating = theme.dir .. "/icons/floating.png" +theme.useless_gap = 0 + theme.titlebar_close_button_focus = theme.dir .. "/icons/titlebar/close_focus.png" theme.titlebar_close_button_normal = theme.dir .. "/icons/titlebar/close_normal.png" - theme.titlebar_ontop_button_focus_active = theme.dir .. "/icons/titlebar/ontop_focus_active.png" theme.titlebar_ontop_button_normal_active = theme.dir .. "/icons/titlebar/ontop_normal_active.png" theme.titlebar_ontop_button_focus_inactive = theme.dir .. "/icons/titlebar/ontop_focus_inactive.png" theme.titlebar_ontop_button_normal_inactive = theme.dir .. "/icons/titlebar/ontop_normal_inactive.png" - theme.titlebar_sticky_button_focus_active = theme.dir .. "/icons/titlebar/sticky_focus_active.png" theme.titlebar_sticky_button_normal_active = theme.dir .. "/icons/titlebar/sticky_normal_active.png" theme.titlebar_sticky_button_focus_inactive = theme.dir .. "/icons/titlebar/sticky_focus_inactive.png" theme.titlebar_sticky_button_normal_inactive = theme.dir .. "/icons/titlebar/sticky_normal_inactive.png" - theme.titlebar_floating_button_focus_active = theme.dir .. "/icons/titlebar/floating_focus_active.png" theme.titlebar_floating_button_normal_active = theme.dir .. "/icons/titlebar/floating_normal_active.png" theme.titlebar_floating_button_focus_inactive = theme.dir .. "/icons/titlebar/floating_focus_inactive.png" theme.titlebar_floating_button_normal_inactive = theme.dir .. "/icons/titlebar/floating_normal_inactive.png" - theme.titlebar_maximized_button_focus_active = theme.dir .. "/icons/titlebar/maximized_focus_active.png" theme.titlebar_maximized_button_normal_active = theme.dir .. "/icons/titlebar/maximized_normal_active.png" theme.titlebar_maximized_button_focus_inactive = theme.dir .. "/icons/titlebar/maximized_focus_inactive.png" theme.titlebar_maximized_button_normal_inactive = theme.dir .. "/icons/titlebar/maximized_normal_inactive.png" -theme.useless_gap = 0 - -- lain related theme.layout_centerfair = theme.dir .. "/icons/centerfair.png" theme.layout_termfair = theme.dir .. "/icons/termfair.png" diff --git a/themes/dremora/icons/titlebar/close_focus.png b/themes/dremora/icons/titlebar/close_focus.png new file mode 100644 index 0000000..6a18125 Binary files /dev/null and b/themes/dremora/icons/titlebar/close_focus.png differ diff --git a/themes/dremora/icons/titlebar/close_normal.png b/themes/dremora/icons/titlebar/close_normal.png new file mode 100644 index 0000000..1c8809f Binary files /dev/null and b/themes/dremora/icons/titlebar/close_normal.png differ diff --git a/themes/dremora/icons/titlebar/floating_focus_active.png b/themes/dremora/icons/titlebar/floating_focus_active.png new file mode 100644 index 0000000..b22ef22 Binary files /dev/null and b/themes/dremora/icons/titlebar/floating_focus_active.png differ diff --git a/themes/dremora/icons/titlebar/floating_focus_inactive.png b/themes/dremora/icons/titlebar/floating_focus_inactive.png new file mode 100644 index 0000000..47f19f6 Binary files /dev/null and b/themes/dremora/icons/titlebar/floating_focus_inactive.png differ diff --git a/themes/dremora/icons/titlebar/floating_normal_active.png b/themes/dremora/icons/titlebar/floating_normal_active.png new file mode 100644 index 0000000..b788552 Binary files /dev/null and b/themes/dremora/icons/titlebar/floating_normal_active.png differ diff --git a/themes/dremora/icons/titlebar/floating_normal_inactive.png b/themes/dremora/icons/titlebar/floating_normal_inactive.png new file mode 100644 index 0000000..4adc5e9 Binary files /dev/null and b/themes/dremora/icons/titlebar/floating_normal_inactive.png differ diff --git a/themes/dremora/icons/titlebar/maximized_focus_active.png b/themes/dremora/icons/titlebar/maximized_focus_active.png new file mode 100644 index 0000000..70af3d5 Binary files /dev/null and b/themes/dremora/icons/titlebar/maximized_focus_active.png differ diff --git a/themes/dremora/icons/titlebar/maximized_focus_inactive.png b/themes/dremora/icons/titlebar/maximized_focus_inactive.png new file mode 100644 index 0000000..bce1d00 Binary files /dev/null and b/themes/dremora/icons/titlebar/maximized_focus_inactive.png differ diff --git a/themes/dremora/icons/titlebar/maximized_normal_active.png b/themes/dremora/icons/titlebar/maximized_normal_active.png new file mode 100644 index 0000000..70e2ddc Binary files /dev/null and b/themes/dremora/icons/titlebar/maximized_normal_active.png differ diff --git a/themes/dremora/icons/titlebar/maximized_normal_inactive.png b/themes/dremora/icons/titlebar/maximized_normal_inactive.png new file mode 100644 index 0000000..2e56d32 Binary files /dev/null and b/themes/dremora/icons/titlebar/maximized_normal_inactive.png differ diff --git a/themes/dremora/icons/titlebar/ontop_focus_active.png b/themes/dremora/icons/titlebar/ontop_focus_active.png new file mode 100644 index 0000000..ade12fe Binary files /dev/null and b/themes/dremora/icons/titlebar/ontop_focus_active.png differ diff --git a/themes/dremora/icons/titlebar/ontop_focus_inactive.png b/themes/dremora/icons/titlebar/ontop_focus_inactive.png new file mode 100644 index 0000000..2f3a2be Binary files /dev/null and b/themes/dremora/icons/titlebar/ontop_focus_inactive.png differ diff --git a/themes/dremora/icons/titlebar/ontop_normal_active.png b/themes/dremora/icons/titlebar/ontop_normal_active.png new file mode 100644 index 0000000..02facc4 Binary files /dev/null and b/themes/dremora/icons/titlebar/ontop_normal_active.png differ diff --git a/themes/dremora/icons/titlebar/ontop_normal_inactive.png b/themes/dremora/icons/titlebar/ontop_normal_inactive.png new file mode 100644 index 0000000..a9a3206 Binary files /dev/null and b/themes/dremora/icons/titlebar/ontop_normal_inactive.png differ diff --git a/themes/dremora/icons/titlebar/sticky_focus_active.png b/themes/dremora/icons/titlebar/sticky_focus_active.png new file mode 100644 index 0000000..f3c533c Binary files /dev/null and b/themes/dremora/icons/titlebar/sticky_focus_active.png differ diff --git a/themes/dremora/icons/titlebar/sticky_focus_inactive.png b/themes/dremora/icons/titlebar/sticky_focus_inactive.png new file mode 100644 index 0000000..5493d8e Binary files /dev/null and b/themes/dremora/icons/titlebar/sticky_focus_inactive.png differ diff --git a/themes/dremora/icons/titlebar/sticky_normal_active.png b/themes/dremora/icons/titlebar/sticky_normal_active.png new file mode 100644 index 0000000..15f0bc4 Binary files /dev/null and b/themes/dremora/icons/titlebar/sticky_normal_active.png differ diff --git a/themes/dremora/icons/titlebar/sticky_normal_inactive.png b/themes/dremora/icons/titlebar/sticky_normal_inactive.png new file mode 100644 index 0000000..7e6c99b Binary files /dev/null and b/themes/dremora/icons/titlebar/sticky_normal_inactive.png differ diff --git a/themes/dremora/icons/uselesstile.png b/themes/dremora/icons/uselesstile.png deleted file mode 100644 index cab4c7e..0000000 Binary files a/themes/dremora/icons/uselesstile.png and /dev/null differ diff --git a/themes/dremora/icons/uselesstileleft.png b/themes/dremora/icons/uselesstileleft.png deleted file mode 100644 index 987dcc2..0000000 Binary files a/themes/dremora/icons/uselesstileleft.png and /dev/null differ diff --git a/themes/dremora/icons/uselesstiletop.png b/themes/dremora/icons/uselesstiletop.png deleted file mode 100644 index 1eabd27..0000000 Binary files a/themes/dremora/icons/uselesstiletop.png and /dev/null differ diff --git a/themes/dremora/theme.lua b/themes/dremora/theme.lua index fa9559a..7f5c435 100644 --- a/themes/dremora/theme.lua +++ b/themes/dremora/theme.lua @@ -6,55 +6,69 @@ --]] -local theme = {} +local theme = {} -theme.dir = os.getenv("HOME") .. "/.config/awesome/themes/dremora" -theme.wallpaper = theme.dir .. "/wall.png" +theme.dir = os.getenv("HOME") .. "/.config/awesome/themes/dremora" +theme.wallpaper = theme.dir .. "/wall.png" -theme.font = "Tamsyn 10.5" -theme.taglist_font = "Icons 10" -theme.fg_normal = "#747474" -theme.fg_focus = "#DDDCFF" -theme.bg_normal = "#121212" -theme.bg_focus = "#121212" -theme.fg_urgent = "#CC9393" -theme.bg_urgent = "#2A1F1E" -theme.border_width = "0" -theme.border_normal = "#121212" -theme.border_focus = "#292929" -theme.titlebar_bg_focus = "#292929" +theme.font = "Tamsyn 10.5" +theme.taglist_font = "Icons 10" +theme.fg_normal = "#747474" +theme.fg_focus = "#DDDCFF" +theme.bg_normal = "#121212" +theme.bg_focus = "#121212" +theme.fg_urgent = "#CC9393" +theme.bg_urgent = "#2A1F1E" +theme.border_width = "0" +theme.border_normal = "#121212" +theme.border_focus = "#292929" +theme.titlebar_bg_focus = "#292929" +theme.taglist_fg_focus = "#dddcff" +theme.taglist_bg_focus = "#121212" -theme.taglist_fg_focus = "#dddcff" -theme.taglist_bg_focus = "#121212" -theme.menu_height = 16 -theme.menu_width = 130 +theme.menu_height = 16 +theme.menu_width = 130 +theme.menu_submenu_icon = theme.dir .. "/icons/submenu.png" -theme.awesome_icon = theme.dir .."/icons/awesome.png" -theme.menu_submenu_icon = theme.dir .. "/icons/submenu.png" -theme.taglist_squares_sel = theme.dir .. "/icons/square_sel.png" -theme.taglist_squares_unsel = theme.dir .. "/icons/square_unsel.png" +theme.awesome_icon = theme.dir .."/icons/awesome.png" +theme.taglist_squares_sel = theme.dir .. "/icons/square_sel.png" +theme.taglist_squares_unsel = theme.dir .. "/icons/square_unsel.png" -theme.layout_tile = theme.dir .. "/icons/tile.png" -theme.layout_tileleft = theme.dir .. "/icons/tileleft.png" -theme.layout_tilebottom = theme.dir .. "/icons/tilebottom.png" -theme.layout_tiletop = theme.dir .. "/icons/tiletop.png" -theme.layout_fairv = theme.dir .. "/icons/fairv.png" -theme.layout_fairh = theme.dir .. "/icons/fairh.png" -theme.layout_spiral = theme.dir .. "/icons/spiral.png" -theme.layout_dwindle = theme.dir .. "/icons/dwindle.png" -theme.layout_max = theme.dir .. "/icons/max.png" -theme.layout_fullscreen = theme.dir .. "/icons/fullscreen.png" -theme.layout_magnifier = theme.dir .. "/icons/magnifier.png" -theme.layout_floating = theme.dir .. "/icons/floating.png" +theme.layout_tile = theme.dir .. "/icons/tile.png" +theme.layout_tileleft = theme.dir .. "/icons/tileleft.png" +theme.layout_tilebottom = theme.dir .. "/icons/tilebottom.png" +theme.layout_tiletop = theme.dir .. "/icons/tiletop.png" +theme.layout_fairv = theme.dir .. "/icons/fairv.png" +theme.layout_fairh = theme.dir .. "/icons/fairh.png" +theme.layout_spiral = theme.dir .. "/icons/spiral.png" +theme.layout_dwindle = theme.dir .. "/icons/dwindle.png" +theme.layout_max = theme.dir .. "/icons/max.png" +theme.layout_fullscreen = theme.dir .. "/icons/fullscreen.png" +theme.layout_magnifier = theme.dir .. "/icons/magnifier.png" +theme.layout_floating = theme.dir .. "/icons/floating.png" -theme.tasklist_plain_task_name = true -theme.tasklist_disable_icon = true +theme.tasklist_plain_task_name = true +theme.tasklist_disable_icon = true -theme.useless_gap = 10 +theme.useless_gap = 10 --- lain related -theme.layout_uselesstile = theme.dir .. "/icons/uselesstile.png" -theme.layout_uselesstileleft = theme.dir .. "/icons/uselesstileleft.png" -theme.layout_uselesstiletop = theme.dir .. "/icons/uselesstiletop.png" +theme.titlebar_close_button_focus = theme.dir .. "/icons/titlebar/close_focus.png" +theme.titlebar_close_button_normal = theme.dir .. "/icons/titlebar/close_normal.png" +theme.titlebar_ontop_button_focus_active = theme.dir .. "/icons/titlebar/ontop_focus_active.png" +theme.titlebar_ontop_button_normal_active = theme.dir .. "/icons/titlebar/ontop_normal_active.png" +theme.titlebar_ontop_button_focus_inactive = theme.dir .. "/icons/titlebar/ontop_focus_inactive.png" +theme.titlebar_ontop_button_normal_inactive = theme.dir .. "/icons/titlebar/ontop_normal_inactive.png" +theme.titlebar_sticky_button_focus_active = theme.dir .. "/icons/titlebar/sticky_focus_active.png" +theme.titlebar_sticky_button_normal_active = theme.dir .. "/icons/titlebar/sticky_normal_active.png" +theme.titlebar_sticky_button_focus_inactive = theme.dir .. "/icons/titlebar/sticky_focus_inactive.png" +theme.titlebar_sticky_button_normal_inactive = theme.dir .. "/icons/titlebar/sticky_normal_inactive.png" +theme.titlebar_floating_button_focus_active = theme.dir .. "/icons/titlebar/floating_focus_active.png" +theme.titlebar_floating_button_normal_active = theme.dir .. "/icons/titlebar/floating_normal_active.png" +theme.titlebar_floating_button_focus_inactive = theme.dir .. "/icons/titlebar/floating_focus_inactive.png" +theme.titlebar_floating_button_normal_inactive = theme.dir .. "/icons/titlebar/floating_normal_inactive.png" +theme.titlebar_maximized_button_focus_active = theme.dir .. "/icons/titlebar/maximized_focus_active.png" +theme.titlebar_maximized_button_normal_active = theme.dir .. "/icons/titlebar/maximized_normal_active.png" +theme.titlebar_maximized_button_focus_inactive = theme.dir .. "/icons/titlebar/maximized_focus_inactive.png" +theme.titlebar_maximized_button_normal_inactive = theme.dir .. "/icons/titlebar/maximized_normal_inactive.png" return theme diff --git a/themes/holo/icons/titlebar/close_focus.png b/themes/holo/icons/titlebar/close_focus.png deleted file mode 100644 index e4763b6..0000000 Binary files a/themes/holo/icons/titlebar/close_focus.png and /dev/null differ diff --git a/themes/holo/icons/titlebar/floating_focus_active.png b/themes/holo/icons/titlebar/floating_focus_active.png deleted file mode 100644 index 80c1b4a..0000000 Binary files a/themes/holo/icons/titlebar/floating_focus_active.png and /dev/null differ diff --git a/themes/holo/icons/titlebar/floating_focus_inactive.png b/themes/holo/icons/titlebar/floating_focus_inactive.png deleted file mode 100644 index a96f00c..0000000 Binary files a/themes/holo/icons/titlebar/floating_focus_inactive.png and /dev/null differ diff --git a/themes/holo/icons/titlebar/maximized_focus_active.png b/themes/holo/icons/titlebar/maximized_focus_active.png deleted file mode 100644 index dad461d..0000000 Binary files a/themes/holo/icons/titlebar/maximized_focus_active.png and /dev/null differ diff --git a/themes/holo/icons/titlebar/maximized_focus_inactive.png b/themes/holo/icons/titlebar/maximized_focus_inactive.png deleted file mode 100644 index 3cc46fe..0000000 Binary files a/themes/holo/icons/titlebar/maximized_focus_inactive.png and /dev/null differ diff --git a/themes/holo/icons/titlebar/minimize_focus.png b/themes/holo/icons/titlebar/minimize_focus.png deleted file mode 100644 index ff427b3..0000000 Binary files a/themes/holo/icons/titlebar/minimize_focus.png and /dev/null differ diff --git a/themes/holo/icons/titlebar/ontop_focus_active.png b/themes/holo/icons/titlebar/ontop_focus_active.png deleted file mode 100644 index d79c8e2..0000000 Binary files a/themes/holo/icons/titlebar/ontop_focus_active.png and /dev/null differ diff --git a/themes/holo/icons/titlebar/ontop_focus_inactive.png b/themes/holo/icons/titlebar/ontop_focus_inactive.png deleted file mode 100644 index 03aef5a..0000000 Binary files a/themes/holo/icons/titlebar/ontop_focus_inactive.png and /dev/null differ diff --git a/themes/holo/icons/titlebar/sticky_focus_active.png b/themes/holo/icons/titlebar/sticky_focus_active.png deleted file mode 100644 index 8019463..0000000 Binary files a/themes/holo/icons/titlebar/sticky_focus_active.png and /dev/null differ diff --git a/themes/holo/icons/titlebar/sticky_focus_inactive.png b/themes/holo/icons/titlebar/sticky_focus_inactive.png deleted file mode 100644 index 6d7fe40..0000000 Binary files a/themes/holo/icons/titlebar/sticky_focus_inactive.png and /dev/null differ diff --git a/themes/holo/theme.lua b/themes/holo/theme.lua index 3706cf7..b72f73e 100644 --- a/themes/holo/theme.lua +++ b/themes/holo/theme.lua @@ -8,6 +8,7 @@ local theme = {} +theme.default_dir = require("awful.util").get_themes_dir() .. "default" theme.icon_dir = os.getenv("HOME") .. "/.config/awesome/themes/holo/icons" theme.wallpaper = os.getenv("HOME") .. "/.config/awesome/themes/holo/wall.png" @@ -74,25 +75,25 @@ 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" +theme.titlebar_close_button_normal = theme.default_dir.."/titlebar/close_normal.png" +theme.titlebar_close_button_focus = theme.default_dir.."/titlebar/close_focus.png" +theme.titlebar_minimize_button_normal = theme.default_dir.."/titlebar/minimize_normal.png" +theme.titlebar_minimize_button_focus = theme.default_dir.."/titlebar/minimize_focus.png" +theme.titlebar_ontop_button_normal_inactive = theme.default_dir.."/titlebar/ontop_normal_inactive.png" +theme.titlebar_ontop_button_focus_inactive = theme.default_dir.."/titlebar/ontop_focus_inactive.png" +theme.titlebar_ontop_button_normal_active = theme.default_dir.."/titlebar/ontop_normal_active.png" +theme.titlebar_ontop_button_focus_active = theme.default_dir.."/titlebar/ontop_focus_active.png" +theme.titlebar_sticky_button_normal_inactive = theme.default_dir.."/titlebar/sticky_normal_inactive.png" +theme.titlebar_sticky_button_focus_inactive = theme.default_dir.."/titlebar/sticky_focus_inactive.png" +theme.titlebar_sticky_button_normal_active = theme.default_dir.."/titlebar/sticky_normal_active.png" +theme.titlebar_sticky_button_focus_active = theme.default_dir.."/titlebar/sticky_focus_active.png" +theme.titlebar_floating_button_normal_inactive = theme.default_dir.."/titlebar/floating_normal_inactive.png" +theme.titlebar_floating_button_focus_inactive = theme.default_dir.."/titlebar/floating_focus_inactive.png" +theme.titlebar_floating_button_normal_active = theme.default_dir.."/titlebar/floating_normal_active.png" +theme.titlebar_floating_button_focus_active = theme.default_dir.."/titlebar/floating_focus_active.png" +theme.titlebar_maximized_button_normal_inactive = theme.default_dir.."/titlebar/maximized_normal_inactive.png" +theme.titlebar_maximized_button_focus_inactive = theme.default_dir.."/titlebar/maximized_focus_inactive.png" +theme.titlebar_maximized_button_normal_active = theme.default_dir.."/titlebar/maximized_normal_active.png" +theme.titlebar_maximized_button_focus_active = theme.default_dir.."/titlebar/maximized_focus_active.png" return theme diff --git a/themes/multicolor/icons/titlebar/close_focus.png b/themes/multicolor/icons/titlebar/close_focus.png new file mode 100644 index 0000000..98c5056 Binary files /dev/null and b/themes/multicolor/icons/titlebar/close_focus.png differ diff --git a/themes/holo/icons/titlebar/close_normal.png b/themes/multicolor/icons/titlebar/close_normal.png similarity index 100% rename from themes/holo/icons/titlebar/close_normal.png rename to themes/multicolor/icons/titlebar/close_normal.png diff --git a/themes/multicolor/icons/titlebar/floating_focus_active.png b/themes/multicolor/icons/titlebar/floating_focus_active.png new file mode 100644 index 0000000..37c1afe Binary files /dev/null and b/themes/multicolor/icons/titlebar/floating_focus_active.png differ diff --git a/themes/multicolor/icons/titlebar/floating_focus_inactive.png b/themes/multicolor/icons/titlebar/floating_focus_inactive.png new file mode 100644 index 0000000..07ee69d Binary files /dev/null and b/themes/multicolor/icons/titlebar/floating_focus_inactive.png differ diff --git a/themes/holo/icons/titlebar/floating_normal_active.png b/themes/multicolor/icons/titlebar/floating_normal_active.png similarity index 100% rename from themes/holo/icons/titlebar/floating_normal_active.png rename to themes/multicolor/icons/titlebar/floating_normal_active.png diff --git a/themes/holo/icons/titlebar/floating_normal_inactive.png b/themes/multicolor/icons/titlebar/floating_normal_inactive.png similarity index 100% rename from themes/holo/icons/titlebar/floating_normal_inactive.png rename to themes/multicolor/icons/titlebar/floating_normal_inactive.png diff --git a/themes/multicolor/icons/titlebar/maximized_focus_active.png b/themes/multicolor/icons/titlebar/maximized_focus_active.png new file mode 100644 index 0000000..35c1801 Binary files /dev/null and b/themes/multicolor/icons/titlebar/maximized_focus_active.png differ diff --git a/themes/multicolor/icons/titlebar/maximized_focus_inactive.png b/themes/multicolor/icons/titlebar/maximized_focus_inactive.png new file mode 100644 index 0000000..043dae7 Binary files /dev/null and b/themes/multicolor/icons/titlebar/maximized_focus_inactive.png differ diff --git a/themes/holo/icons/titlebar/maximized_normal_active.png b/themes/multicolor/icons/titlebar/maximized_normal_active.png similarity index 100% rename from themes/holo/icons/titlebar/maximized_normal_active.png rename to themes/multicolor/icons/titlebar/maximized_normal_active.png diff --git a/themes/holo/icons/titlebar/maximized_normal_inactive.png b/themes/multicolor/icons/titlebar/maximized_normal_inactive.png similarity index 100% rename from themes/holo/icons/titlebar/maximized_normal_inactive.png rename to themes/multicolor/icons/titlebar/maximized_normal_inactive.png diff --git a/themes/multicolor/icons/titlebar/minimize_focus.png b/themes/multicolor/icons/titlebar/minimize_focus.png new file mode 100644 index 0000000..85d8196 Binary files /dev/null and b/themes/multicolor/icons/titlebar/minimize_focus.png differ diff --git a/themes/holo/icons/titlebar/minimize_normal.png b/themes/multicolor/icons/titlebar/minimize_normal.png similarity index 100% rename from themes/holo/icons/titlebar/minimize_normal.png rename to themes/multicolor/icons/titlebar/minimize_normal.png diff --git a/themes/multicolor/icons/titlebar/ontop_focus_active.png b/themes/multicolor/icons/titlebar/ontop_focus_active.png new file mode 100644 index 0000000..968f89b Binary files /dev/null and b/themes/multicolor/icons/titlebar/ontop_focus_active.png differ diff --git a/themes/multicolor/icons/titlebar/ontop_focus_inactive.png b/themes/multicolor/icons/titlebar/ontop_focus_inactive.png new file mode 100644 index 0000000..43d6274 Binary files /dev/null and b/themes/multicolor/icons/titlebar/ontop_focus_inactive.png differ diff --git a/themes/holo/icons/titlebar/ontop_normal_active.png b/themes/multicolor/icons/titlebar/ontop_normal_active.png similarity index 100% rename from themes/holo/icons/titlebar/ontop_normal_active.png rename to themes/multicolor/icons/titlebar/ontop_normal_active.png diff --git a/themes/holo/icons/titlebar/ontop_normal_inactive.png b/themes/multicolor/icons/titlebar/ontop_normal_inactive.png similarity index 100% rename from themes/holo/icons/titlebar/ontop_normal_inactive.png rename to themes/multicolor/icons/titlebar/ontop_normal_inactive.png diff --git a/themes/multicolor/icons/titlebar/sticky_focus_active.png b/themes/multicolor/icons/titlebar/sticky_focus_active.png new file mode 100644 index 0000000..147ce6a Binary files /dev/null and b/themes/multicolor/icons/titlebar/sticky_focus_active.png differ diff --git a/themes/multicolor/icons/titlebar/sticky_focus_inactive.png b/themes/multicolor/icons/titlebar/sticky_focus_inactive.png new file mode 100644 index 0000000..a5cdf21 Binary files /dev/null and b/themes/multicolor/icons/titlebar/sticky_focus_inactive.png differ diff --git a/themes/holo/icons/titlebar/sticky_normal_active.png b/themes/multicolor/icons/titlebar/sticky_normal_active.png similarity index 100% rename from themes/holo/icons/titlebar/sticky_normal_active.png rename to themes/multicolor/icons/titlebar/sticky_normal_active.png diff --git a/themes/holo/icons/titlebar/sticky_normal_inactive.png b/themes/multicolor/icons/titlebar/sticky_normal_inactive.png similarity index 100% rename from themes/holo/icons/titlebar/sticky_normal_inactive.png rename to themes/multicolor/icons/titlebar/sticky_normal_inactive.png diff --git a/themes/multicolor/theme.lua b/themes/multicolor/theme.lua index ba0622a..b42035f 100644 --- a/themes/multicolor/theme.lua +++ b/themes/multicolor/theme.lua @@ -7,70 +7,90 @@ --]] -local theme = {} +local theme = {} -theme.confdir = os.getenv("HOME") .. "/.config/awesome/themes/multicolor" -theme.wallpaper = theme.confdir .. "/wall.png" +theme.confdir = os.getenv("HOME") .. "/.config/awesome/themes/multicolor" +theme.wallpaper = theme.confdir .. "/wall.png" -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" -theme.menu_border_width = 0 -theme.menu_width = 130 -theme.menu_fg_normal = "#aaaaaa" -theme.menu_fg_focus = "#ff8c00" -theme.menu_bg_normal = "#050505dd" -theme.menu_bg_focus = "#050505dd" +theme.font = "Terminus 8" +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" -theme.menu_submenu_icon = theme.confdir .. "/icons/submenu.png" -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" +theme.menu_border_width = 0 +theme.menu_width = 130 +theme.menu_submenu_icon = theme.confdir .. "/icons/submenu.png" +theme.menu_fg_normal = "#aaaaaa" +theme.menu_fg_focus = "#ff8c00" +theme.menu_bg_normal = "#050505dd" +theme.menu_bg_focus = "#050505dd" -theme.taglist_squares_sel = theme.confdir .. "/icons/square_a.png" -theme.taglist_squares_unsel = theme.confdir .. "/icons/square_b.png" +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" +theme.taglist_squares_sel = theme.confdir .. "/icons/square_a.png" +theme.taglist_squares_unsel = theme.confdir .. "/icons/square_b.png" -theme.tasklist_plain_task_name = true -theme.tasklist_disable_icon = true +theme.tasklist_plain_task_name = true +theme.tasklist_disable_icon = true -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" +theme.useless_gap = 0 -theme.useless_gap = 0 +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" + +theme.titlebar_close_button_normal = theme.confdir .. "/icons/titlebar/close_normal.png" +theme.titlebar_close_button_focus = theme.confdir .. "/icons/titlebar/close_focus.png" +theme.titlebar_minimize_button_normal = theme.confdir .. "/icons/titlebar/minimize_normal.png" +theme.titlebar_minimize_button_focus = theme.confdir .. "/icons/titlebar/minimize_focus.png" +theme.titlebar_ontop_button_normal_inactive = theme.confdir .. "/icons/titlebar/ontop_normal_inactive.png" +theme.titlebar_ontop_button_focus_inactive = theme.confdir .. "/icons/titlebar/ontop_focus_inactive.png" +theme.titlebar_ontop_button_normal_active = theme.confdir .. "/icons/titlebar/ontop_normal_active.png" +theme.titlebar_ontop_button_focus_active = theme.confdir .. "/icons/titlebar/ontop_focus_active.png" +theme.titlebar_sticky_button_normal_inactive = theme.confdir .. "/icons/titlebar/sticky_normal_inactive.png" +theme.titlebar_sticky_button_focus_inactive = theme.confdir .. "/icons/titlebar/sticky_focus_inactive.png" +theme.titlebar_sticky_button_normal_active = theme.confdir .. "/icons/titlebar/sticky_normal_active.png" +theme.titlebar_sticky_button_focus_active = theme.confdir .. "/icons/titlebar/sticky_focus_active.png" +theme.titlebar_floating_button_normal_inactive = theme.confdir .. "/icons/titlebar/floating_normal_inactive.png" +theme.titlebar_floating_button_focus_inactive = theme.confdir .. "/icons/titlebar/floating_focus_inactive.png" +theme.titlebar_floating_button_normal_active = theme.confdir .. "/icons/titlebar/floating_normal_active.png" +theme.titlebar_floating_button_focus_active = theme.confdir .. "/icons/titlebar/floating_focus_active.png" +theme.titlebar_maximized_button_normal_inactive = theme.confdir .. "/icons/titlebar/maximized_normal_inactive.png" +theme.titlebar_maximized_button_focus_inactive = theme.confdir .. "/icons/titlebar/maximized_focus_inactive.png" +theme.titlebar_maximized_button_normal_active = theme.confdir .. "/icons/titlebar/maximized_normal_active.png" +theme.titlebar_maximized_button_focus_active = theme.confdir .. "/icons/titlebar/maximized_focus_active.png" return theme