Added .themes directory, as it contains a mild amount of untracked content.

This commit is contained in:
2017-07-30 00:28:28 -05:00
parent 187f70e097
commit 1be99e4cef
2637 changed files with 131639 additions and 0 deletions

View File

@@ -0,0 +1,154 @@
style "menu"="default"
{
xthickness=0
ythickness=0
engine "pixmap"
{
image
{
function = BOX
# recolorable = TRUE
detail = "menu"
file = "Menu-Menubar/menu.png"
border = { 1, 1, 1, 1 }
stretch = TRUE
}
}
}
style "menuitem"
{
xthickness = 0
ythickness = 4
bg[SELECTED] = @selected_fg_color
fg[PRELIGHT] = @selected_fg_color
fg[SELECTED] = @selected_fg_color
text[SELECTED] = @selected_fg_color
text[PRELIGHT] = @selected_fg_color
engine "pixmap"
{
image
{
function = BOX
recolorable = TRUE
file = "Menu-Menubar/menuitem.png"
border = { 5, 5, 5, 5 }
stretch = TRUE
}
image
{
function = ARROW
recolorable = TRUE
state = NORMAL
overlay_file = "Menu-Menubar/arrow-right.png"
overlay_stretch = FALSE
arrow_direction = RIGHT
}
image
{
function = ARROW
recolorable = TRUE
state = PRELIGHT
overlay_file = "Menu-Menubar/arrow-right-prelight.png"
overlay_stretch = FALSE
arrow_direction = RIGHT
}
image
{
function = HLINE
recolorable = TRUE
file = "Menu-Menubar/menuline.png"
border = { 0, 0, 1, 0 }
stretch = TRUE
}
}
}
style "tearoffmenuitem" = "menuitem"
{
engine "pixmap"
{
image
{
function = ARROW
file = "Arrows/arrow-left.png"
stretch = TRUE
arrow_direction = LEFT
}
}
}
style "menubar"
{
text[PRELIGHT] = @fg_color
text[SELECTED] = @fg_color
fg[PRELIGHT] = @fg_color
fg[SELECTED] = @fg_color
xthickness = 1
ythickness = 1
engine "pixmap"
{
image
{
function = BOX
state = NORMAL
file = "Menu-Menubar/menubar.png"
border = { 0, 0, 0, 1 }
stretch = TRUE
}
image
{
function = BOX
state = ACTIVE
file = "Menu-Menubar/menubar.png"
border = { 0, 0, 0, 1 }
stretch = TRUE
}
image
{
function = BOX
state = INSENSITIVE
file = "Menu-Menubar/menubar.png"
border = { 0, 0, 0, 1 }
stretch = TRUE
}
image
{
function = BOX
recolorable = TRUE
state = PRELIGHT
file = "Menu-Menubar/menubar-item.png"
border = { 5, 5, 0, 0 }
stretch = TRUE
}
}
}
style "menubar-item"
{
text[PRELIGHT] = @fg_color
text[SELECTED] = @fg_color
fg[PRELIGHT] = @fg_color
fg[SELECTED] = @fg_color
xthickness = 1
ythickness = 1
}
widget_class "*<GtkSeparatorMenuItem>*" style "menuitem"
class "GtkMenu" style "menu"
widget_class "*<GtkMenu>*" style "menu"
widget_class "*<GtkMenuItem>*" style "menuitem"
class "GtkMenuItem" style "menuitem"
class "GtkTearoffMenuItem" style "menuitem"
class "GtkMenuBar*" style "menubar"
widget_class "*<GtkMenuBar>*" style "menubar"
widget_class "*<GtkMenuBar>.<GtkMenuItem>*" style "menubar-item"