added titlebar icons for: multicolor, blackburn, dremora
|
@ -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)
|
||||
|
||||
|
|
|
@ -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
|
||||
|
|
After Width: | Height: | Size: 190 B |
After Width: | Height: | Size: 235 B |
After Width: | Height: | Size: 191 B |
After Width: | Height: | Size: 154 B |
After Width: | Height: | Size: 217 B |
After Width: | Height: | Size: 176 B |
After Width: | Height: | Size: 264 B |
After Width: | Height: | Size: 176 B |
After Width: | Height: | Size: 243 B |
After Width: | Height: | Size: 174 B |
After Width: | Height: | Size: 182 B |
After Width: | Height: | Size: 161 B |
After Width: | Height: | Size: 220 B |
After Width: | Height: | Size: 171 B |
After Width: | Height: | Size: 194 B |
After Width: | Height: | Size: 155 B |
After Width: | Height: | Size: 234 B |
After Width: | Height: | Size: 165 B |
Before Width: | Height: | Size: 184 B |
Before Width: | Height: | Size: 183 B |
Before Width: | Height: | Size: 181 B |
|
@ -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
|
||||
|
|
|
@ -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"
|
||||
|
|
After Width: | Height: | Size: 190 B |
After Width: | Height: | Size: 236 B |
After Width: | Height: | Size: 191 B |
After Width: | Height: | Size: 154 B |
After Width: | Height: | Size: 217 B |
After Width: | Height: | Size: 176 B |
After Width: | Height: | Size: 257 B |
After Width: | Height: | Size: 176 B |
After Width: | Height: | Size: 244 B |
After Width: | Height: | Size: 174 B |
After Width: | Height: | Size: 178 B |
After Width: | Height: | Size: 161 B |
After Width: | Height: | Size: 225 B |
After Width: | Height: | Size: 171 B |
After Width: | Height: | Size: 194 B |
After Width: | Height: | Size: 155 B |
After Width: | Height: | Size: 234 B |
After Width: | Height: | Size: 165 B |
Before Width: | Height: | Size: 171 B |
Before Width: | Height: | Size: 169 B |
Before Width: | Height: | Size: 169 B |
|
@ -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
|
||||
|
|
Before Width: | Height: | Size: 1.3 KiB |
Before Width: | Height: | Size: 491 B |
Before Width: | Height: | Size: 350 B |
Before Width: | Height: | Size: 696 B |
Before Width: | Height: | Size: 719 B |
Before Width: | Height: | Size: 277 B |
Before Width: | Height: | Size: 609 B |
Before Width: | Height: | Size: 756 B |
Before Width: | Height: | Size: 717 B |
Before Width: | Height: | Size: 937 B |
|
@ -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
|
||||
|
|
After Width: | Height: | Size: 1.2 KiB |
Before Width: | Height: | Size: 1.4 KiB After Width: | Height: | Size: 1.4 KiB |
After Width: | Height: | Size: 413 B |
After Width: | Height: | Size: 264 B |
Before Width: | Height: | Size: 492 B After Width: | Height: | Size: 492 B |
Before Width: | Height: | Size: 350 B After Width: | Height: | Size: 350 B |
After Width: | Height: | Size: 602 B |
After Width: | Height: | Size: 688 B |
Before Width: | Height: | Size: 693 B After Width: | Height: | Size: 693 B |
Before Width: | Height: | Size: 695 B After Width: | Height: | Size: 695 B |
After Width: | Height: | Size: 293 B |
Before Width: | Height: | Size: 272 B After Width: | Height: | Size: 272 B |
After Width: | Height: | Size: 286 B |
After Width: | Height: | Size: 685 B |
Before Width: | Height: | Size: 619 B After Width: | Height: | Size: 619 B |
Before Width: | Height: | Size: 769 B After Width: | Height: | Size: 769 B |
After Width: | Height: | Size: 622 B |
After Width: | Height: | Size: 888 B |
Before Width: | Height: | Size: 726 B After Width: | Height: | Size: 726 B |
Before Width: | Height: | Size: 981 B After Width: | Height: | Size: 981 B |
|
@ -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
|
||||
|
|