240 lines
9.0 KiB
Lua
240 lines
9.0 KiB
Lua
local theme_assets = require("beautiful.theme_assets")
|
|
local xresources = require("beautiful.xresources")
|
|
local dpi = xresources.apply_dpi
|
|
|
|
local theme = {}
|
|
|
|
theme.name = "unity"
|
|
|
|
theme.font = "Ubuntu Regular 10"
|
|
theme.icon_rounding = 5
|
|
theme.volume_slider_width = 60
|
|
theme.username_container_spacing_horizontal = 3
|
|
theme.macbar_rounding = 5
|
|
theme.macbar_height = 45
|
|
theme.menu_button_inner_margin = 2
|
|
theme.container_rounding = 4
|
|
theme.button_rounding = 4
|
|
theme.bg_normal = "#19191D"
|
|
theme.bg_focus = "#3E3E3E"
|
|
theme.bg_urgent = "#2E2E2E"
|
|
theme.bg_minimize = "#2E2E2E"
|
|
theme.bg_systray = theme.bg_normal
|
|
|
|
theme.fg_normal = "#e1dec7"
|
|
theme.fg_focus = "#e1dec7"
|
|
theme.fg_urgent = "#e1dec7"
|
|
theme.fg_minimize = "#e1dec7"
|
|
|
|
theme.useless_gap = dpi(10)
|
|
theme.border_width = dpi(1)
|
|
theme.border_normal = theme.bg_focus
|
|
theme.border_focus = theme.bg_focus
|
|
theme.border_marked = theme.bg_marked
|
|
|
|
-- unitybar
|
|
theme.unitybar_width = dpi(60)
|
|
theme.unitybar_bg = "#0D0D0966"
|
|
theme.unitybar_border_width = 1
|
|
theme.unitybar_border_color = "#26262666"
|
|
theme.unitybar_inner_margin = 5
|
|
local bsize = theme.unitybar_width - (theme.unitybar_inner_margin*2)
|
|
|
|
theme.tasklist_button_shape_border_width = dpi(1)
|
|
theme.tasklist_button_shape_border_color = {
|
|
type = "linear",
|
|
from = {bsize/2,0},
|
|
to = {bsize/2,bsize},
|
|
stops = {
|
|
{ 0 , "#FFFFFF66"},
|
|
{ 1, "#43434366"},
|
|
}
|
|
}
|
|
|
|
theme.launcher_button_shape_border_width = dpi(1)
|
|
theme.launcher_button_shape_border_color = theme.tasklist_button_shape_border_color
|
|
|
|
theme.tasklist_bg_focus = {
|
|
type = "linear",
|
|
from = {bsize/2,0*bsize},
|
|
to = {bsize/2,1*bsize},
|
|
stops = {
|
|
{ 0 , "#FFFFFFBB"},
|
|
{ 0.3, "#E9542055"},
|
|
{ 0.6, "#E9542055"},
|
|
{ 1, "#FFFFFF44"}
|
|
}
|
|
}
|
|
|
|
theme.tasklist_bg_normal = {
|
|
type = "linear",
|
|
from = {bsize/2,0*bsize},
|
|
to = {bsize/2,1*bsize},
|
|
stops = {
|
|
{ 0 , "#FFFFFF55"},
|
|
{ 0.5, "#33333333"},
|
|
{ 1, "#FFFFFF22"}
|
|
}
|
|
}
|
|
|
|
theme.tasklist_bg_minimize = "#23232366"
|
|
theme.tasklist_bg_minimize = "#23232366"
|
|
theme.tasklist_container_spacing = 5
|
|
theme.launcher_container_spacing = 5
|
|
-- There are other variable sets
|
|
|
|
theme.launcher_button_bg_focus = {
|
|
type = "linear",
|
|
from = {bsize/2,0*bsize},
|
|
to = {bsize/2,1*bsize},
|
|
stops = {
|
|
{ 0 , "#FFFFFFBB"},
|
|
{ 0.3, "#E9542055"},
|
|
{ 0.6, "#E9542055"},
|
|
{ 1, "#FFFFFF44"}
|
|
}
|
|
}
|
|
|
|
theme.launcher_button_bg_normal = {
|
|
type = "linear",
|
|
from = {bsize/2,0*bsize},
|
|
to = {bsize/2,1*bsize},
|
|
stops = {
|
|
{ 0 , "#FFFFFF55"},
|
|
{ 0.5, "#33333333"},
|
|
{ 1, "#FFFFFF22"}
|
|
}
|
|
}
|
|
-- overriding the default one when
|
|
-- defined, the sets are:
|
|
-- taglist_[bg|fg]_[focus|urgent|occupied|empty|volatile]
|
|
-- tasklist_[bg|fg]_[focus|urgent]
|
|
-- titlebar_[bg|fg]_[normal|focus]
|
|
-- tooltip_[font|opacity|fg_color|bg_color|border_width|border_color]
|
|
-- mouse_finder_[color|timeout|animate_timeout|radius|factor]
|
|
-- prompt_[fg|bg|fg_cursor|bg_cursor|font]
|
|
-- hotkeys_[bg|fg|border_width|border_color|shape|opacity|modifiers_fg|label_bg|label_fg|group_margin|font|description_font]
|
|
-- Example:
|
|
--theme.taglist_bg_focus = "#ff0000"
|
|
theme.hotkeys_border_color = "#262626"
|
|
theme.hotkeys_opacity = 0.2
|
|
|
|
theme.titlebar_bg_focus = {
|
|
type = "linear",
|
|
from = { 0, 20 },
|
|
to = { 0, 0 },
|
|
stops = { { 0, "#3C3B37"} , { 1 , "#59574E"} }
|
|
}
|
|
|
|
theme.titlebar_bg_normal = {
|
|
type = "linear",
|
|
from = { 0, 20 },
|
|
to = { 0, 0 },
|
|
stops = { { 0, "#3C3B37"} , { 1 , "#41403D"} }
|
|
}
|
|
|
|
theme.topbar_bg = {
|
|
type = "linear",
|
|
from = { 0, 20 },
|
|
to = { 0, 0 },
|
|
stops = { { 0, "#3C3B37"} , { 1 , "#545249"} }
|
|
}
|
|
|
|
theme.titlebar_rounding = 6
|
|
theme.bg_systray = "#3A3A36"
|
|
theme.prompt_bg = theme.titlebar_bg_normal
|
|
theme.wintitle_icon_bg_normal = theme.topbar_bg
|
|
theme.wallpapers_icon_bg_normal = theme.topbar_bg
|
|
theme.mailbox_icon_bg_normal = theme.topbar_bg
|
|
theme.volume_icon_bg_normal = theme.topbar_bg
|
|
theme.battery_icon_bg_normal = theme.topbar_bg
|
|
theme.username_icon_bg_normal = theme.topbar_bg
|
|
theme.drawer_icon_bg_normal = theme.topbar_bg
|
|
-- Generate taglist squares:
|
|
local taglist_square_size = dpi(4)
|
|
theme.taglist_squares_sel = theme_assets.taglist_squares_sel(
|
|
taglist_square_size, theme.fg_normal
|
|
)
|
|
theme.taglist_squares_unsel = theme_assets.taglist_squares_unsel(
|
|
taglist_square_size, theme.fg_normal
|
|
)
|
|
|
|
-- Variables set for theming notifications:
|
|
-- notification_font
|
|
-- not1ification_[bg|fg]
|
|
-- notification_[width|height|margin]
|
|
-- notification_[border_color|border_width|shape|opacity]
|
|
theme.notification_width = dpi(250)
|
|
theme.notification_height = dpi(80)
|
|
-- Variables set for theming the menu:
|
|
-- menu_[bg|fg]_[normal|focus]
|
|
-- menu_[border_color|border_width]
|
|
theme.menu_submenu_icon = global.themes_dir..theme.name.."/submenu.png"
|
|
theme.menu_height = dpi(18)
|
|
theme.menu_width = dpi(140)
|
|
|
|
-- You can add as many variables as
|
|
-- you wish and access them by using
|
|
-- beautiful.variable in your rc.lua
|
|
--theme.bg_widget = "#cc0000"
|
|
|
|
-- Define the image to load
|
|
theme.titlebar_close_button_normal = global.themes_dir..theme.name.."/titlebar/close_normal.png"
|
|
theme.titlebar_close_button_focus = global.themes_dir..theme.name.."/titlebar/close_focus.png"
|
|
|
|
theme.titlebar_minimize_button_normal = global.themes_dir..theme.name.."/titlebar/minimize_normal.png"
|
|
theme.titlebar_minimize_button_focus = global.themes_dir..theme.name.."/titlebar/minimize_focus.png"
|
|
|
|
theme.titlebar_ontop_button_normal_inactive = global.themes_dir..theme.name.."/titlebar/ontop_normal_inactive.png"
|
|
theme.titlebar_ontop_button_focus_inactive = global.themes_dir..theme.name.."/titlebar/ontop_focus_inactive.png"
|
|
theme.titlebar_ontop_button_normal_active = global.themes_dir..theme.name.."/titlebar/ontop_normal_active.png"
|
|
theme.titlebar_ontop_button_focus_active = global.themes_dir..theme.name.."/titlebar/ontop_focus_active.png"
|
|
|
|
theme.titlebar_sticky_button_normal_inactive = global.themes_dir..theme.name.."/titlebar/sticky_normal_inactive.png"
|
|
theme.titlebar_sticky_button_focus_inactive = global.themes_dir..theme.name.."/titlebar/sticky_focus_inactive.png"
|
|
theme.titlebar_sticky_button_normal_active = global.themes_dir..theme.name.."/titlebar/sticky_normal_active.png"
|
|
theme.titlebar_sticky_button_focus_active = global.themes_dir..theme.name.."/titlebar/sticky_focus_active.png"
|
|
|
|
theme.titlebar_floating_button_normal_inactive = global.themes_dir..theme.name.."/titlebar/floating_normal_inactive.png"
|
|
theme.titlebar_floating_button_focus_inactive = global.themes_dir..theme.name.."/titlebar/floating_focus_inactive.png"
|
|
theme.titlebar_floating_button_normal_active = global.themes_dir..theme.name.."/titlebar/floating_normal_active.png"
|
|
theme.titlebar_floating_button_focus_active = global.themes_dir..theme.name.."/titlebar/floating_focus_active.png"
|
|
|
|
theme.titlebar_maximized_button_normal_inactive = global.themes_dir..theme.name.."/titlebar/maximized_normal_inactive.png"
|
|
theme.titlebar_maximized_button_focus_inactive = global.themes_dir..theme.name.."/titlebar/maximized_focus_inactive.png"
|
|
theme.titlebar_maximized_button_normal_active = global.themes_dir..theme.name.."/titlebar/maximized_normal_active.png"
|
|
theme.titlebar_maximized_button_focus_active = global.themes_dir..theme.name.."/titlebar/maximized_focus_active.png"
|
|
|
|
theme.wallpaper = global.themes_dir..theme.name.."/background.png"
|
|
|
|
-- You can use your own layout icons like this:
|
|
theme.layout_fairh = global.themes_dir..theme.name.."/layouts/fairhw.png"
|
|
theme.layout_fairv = global.themes_dir..theme.name.."/layouts/fairvw.png"
|
|
theme.layout_floating = global.themes_dir..theme.name.."/layouts/floatingw.png"
|
|
theme.layout_magnifier = global.themes_dir..theme.name.."/layouts/magnifierw.png"
|
|
theme.layout_max = global.themes_dir..theme.name.."/layouts/maxw.png"
|
|
theme.layout_fullscreen = global.themes_dir..theme.name.."/layouts/fullscreenw.png"
|
|
theme.layout_tilebottom = global.themes_dir..theme.name.."/layouts/tilebottomw.png"
|
|
theme.layout_tileleft = global.themes_dir..theme.name.."/layouts/tileleftw.png"
|
|
theme.layout_tile = global.themes_dir..theme.name.."/layouts/tilew.png"
|
|
theme.layout_tiletop = global.themes_dir..theme.name.."/layouts/tiletopw.png"
|
|
theme.layout_spiral = global.themes_dir..theme.name.."/layouts/spiralw.png"
|
|
theme.layout_dwindle = global.themes_dir..theme.name.."/layouts/dwindlew.png"
|
|
theme.layout_cornernw = global.themes_dir..theme.name.."/layouts/cornernww.png"
|
|
theme.layout_cornerne = global.themes_dir..theme.name.."/layouts/cornernew.png"
|
|
theme.layout_cornersw = global.themes_dir..theme.name.."/layouts/cornersww.png"
|
|
theme.layout_cornerse = global.themes_dir..theme.name.."/layouts/cornersew.png"
|
|
theme_assets.recolor_layout(theme, theme.fg_normal)
|
|
|
|
-- Generate Awesome icon:
|
|
theme.awesome_icon = theme_assets.awesome_icon(
|
|
theme.menu_height, theme.bg_focus, theme.fg_focus
|
|
)
|
|
-- Define the icon theme for application icons. If not set then the icons
|
|
-- from /usr/share/icons and /usr/share/icons/hicolor will be used.
|
|
theme.icon_theme = "Adwaita"
|
|
|
|
return theme
|
|
|
|
-- vim: filetype=lua:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:textwidth=80
|