made unity more unity-like
This commit is contained in:
parent
26907ca479
commit
7abe73f465
|
@ -37,7 +37,7 @@ theme.unitybar_width = dpi(60)
|
||||||
theme.unitybar_bg = "#0D0D0966"
|
theme.unitybar_bg = "#0D0D0966"
|
||||||
theme.unitybar_border_width = 1
|
theme.unitybar_border_width = 1
|
||||||
theme.unitybar_border_color = "#26262666"
|
theme.unitybar_border_color = "#26262666"
|
||||||
theme.unitybar_inner_margin = 5
|
theme.unitybar_inner_margin = 3
|
||||||
local bsize = theme.unitybar_width - (theme.unitybar_inner_margin*2)
|
local bsize = theme.unitybar_width - (theme.unitybar_inner_margin*2)
|
||||||
|
|
||||||
theme.tasklist_button_shape_border_width = dpi(1)
|
theme.tasklist_button_shape_border_width = dpi(1)
|
||||||
|
|
|
@ -37,7 +37,7 @@ theme.unitybar_width = dpi(60)
|
||||||
theme.unitybar_bg = "#0D0D0966"
|
theme.unitybar_bg = "#0D0D0966"
|
||||||
theme.unitybar_border_width = 1
|
theme.unitybar_border_width = 1
|
||||||
theme.unitybar_border_color = "#26262666"
|
theme.unitybar_border_color = "#26262666"
|
||||||
theme.unitybar_inner_margin = 5
|
theme.unitybar_inner_margin = 3
|
||||||
local bsize = theme.unitybar_width - (theme.unitybar_inner_margin*2)
|
local bsize = theme.unitybar_width - (theme.unitybar_inner_margin*2)
|
||||||
|
|
||||||
theme.tasklist_button_shape_border_width = dpi(1)
|
theme.tasklist_button_shape_border_width = dpi(1)
|
||||||
|
@ -46,8 +46,8 @@ theme.tasklist_button_shape_border_color = {
|
||||||
from = {bsize/2,0},
|
from = {bsize/2,0},
|
||||||
to = {bsize/2,bsize},
|
to = {bsize/2,bsize},
|
||||||
stops = {
|
stops = {
|
||||||
{ 0 , "#FFFFFF66"},
|
{ 0 , "#FFFFFF33"},
|
||||||
{ 1, "#43434366"},
|
{ 1, "#43434333"},
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -56,24 +56,24 @@ theme.launcher_button_shape_border_color = theme.tasklist_button_shape_border_co
|
||||||
|
|
||||||
theme.tasklist_bg_focus = {
|
theme.tasklist_bg_focus = {
|
||||||
type = "linear",
|
type = "linear",
|
||||||
from = {bsize/2,0*bsize},
|
from = {bsize/2,-0.125*bsize},
|
||||||
to = {bsize/2,1*bsize},
|
to = {bsize/2,1.125*bsize},
|
||||||
stops = {
|
stops = {
|
||||||
{ 0 , "#FFFFFFBB"},
|
{ 0 , "#FFFFFF99"},
|
||||||
{ 0.3, "#E9542055"},
|
{ 0.3, "#E9542066"},
|
||||||
{ 0.6, "#E9542055"},
|
{ 0.6, "#E9542066"},
|
||||||
{ 1, "#FFFFFF44"}
|
{ 1, "#FFFFFF22"}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
theme.tasklist_bg_normal = {
|
theme.tasklist_bg_normal = {
|
||||||
type = "linear",
|
type = "linear",
|
||||||
from = {bsize/2,0*bsize},
|
from = {bsize/2,-0.125*bsize},
|
||||||
to = {bsize/2,1*bsize},
|
to = {bsize/2,1*bsize},
|
||||||
stops = {
|
stops = {
|
||||||
{ 0 , "#FFFFFF55"},
|
{ 0 , "#FFFFFF66"},
|
||||||
{ 0.5, "#33333333"},
|
{ 0.5, "#33333333"},
|
||||||
{ 1, "#FFFFFF22"}
|
{ 1, "#FFFFFF11"}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -85,24 +85,24 @@ theme.launcher_container_spacing = 5
|
||||||
|
|
||||||
theme.launcher_button_bg_focus = {
|
theme.launcher_button_bg_focus = {
|
||||||
type = "linear",
|
type = "linear",
|
||||||
from = {bsize/2,0*bsize},
|
from = {bsize/2,-0.125*bsize},
|
||||||
to = {bsize/2,1*bsize},
|
to = {bsize/2,1.125*bsize},
|
||||||
stops = {
|
stops = {
|
||||||
{ 0 , "#FFFFFFBB"},
|
{ 0 , "#FFFFFF99"},
|
||||||
{ 0.3, "#E9542055"},
|
{ 0.3, "#E9542066"},
|
||||||
{ 0.6, "#E9542055"},
|
{ 0.6, "#E9542066"},
|
||||||
{ 1, "#FFFFFF44"}
|
{ 1, "#FFFFFF22"}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
theme.launcher_button_bg_normal = {
|
theme.launcher_button_bg_normal = {
|
||||||
type = "linear",
|
type = "linear",
|
||||||
from = {bsize/2,0*bsize},
|
from = {bsize/2,-0.125*bsize},
|
||||||
to = {bsize/2,1*bsize},
|
to = {bsize/2,1*bsize},
|
||||||
stops = {
|
stops = {
|
||||||
{ 0 , "#FFFFFF55"},
|
{ 0 , "#FFFFFF66"},
|
||||||
{ 0.5, "#33333333"},
|
{ 0.5, "#33333333"},
|
||||||
{ 1, "#FFFFFF22"}
|
{ 1, "#FFFFFF11"}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
-- overriding the default one when
|
-- overriding the default one when
|
||||||
|
|
Loading…
Reference in New Issue