parent
68296333df
commit
45fb503cfc
@ -0,0 +1,4 @@
|
||||
#define bullet_width 6
|
||||
#define bullet_height 9
|
||||
static unsigned char bullet_bits[] = {
|
||||
0x00, 0x06, 0x0e, 0x1c, 0x38, 0x1c, 0x0e, 0x06, 0x00 };
|
@ -0,0 +1,6 @@
|
||||
#define close_width 15
|
||||
#define close_height 15
|
||||
static unsigned char close_bits[] = {
|
||||
0xe0, 0x03, 0xf8, 0x0f, 0xfc, 0x1f, 0xfe, 0x3f, 0xce, 0x39, 0x8f, 0x78,
|
||||
0x1f, 0x7c, 0x3f, 0x7e, 0x1f, 0x7c, 0x8f, 0x78, 0xce, 0x39, 0xfe, 0x3f,
|
||||
0xfc, 0x1f, 0xf8, 0x0f, 0xe0, 0x03 };
|
@ -0,0 +1,6 @@
|
||||
#define desk_width 15
|
||||
#define desk_height 15
|
||||
static unsigned char desk_bits[] = {
|
||||
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x06, 0x00, 0x0f, 0x80, 0x0f,
|
||||
0xf0, 0x07, 0xe0, 0x03, 0xc0, 0x01, 0xa0, 0x01, 0x10, 0x01, 0x00, 0x00,
|
||||
0x00, 0x00, 0x00, 0x00, 0x00, 0x00 };
|
@ -0,0 +1,6 @@
|
||||
#define desk_width 15
|
||||
#define desk_height 15
|
||||
static unsigned char desk_bits[] = {
|
||||
0x00, 0x00, 0x00, 0x00, 0xc0, 0x01, 0xe0, 0x03, 0xe0, 0x03, 0xe0, 0x03,
|
||||
0xe0, 0x03, 0xe0, 0x03, 0xf0, 0x07, 0xf0, 0x07, 0x80, 0x00, 0x80, 0x00,
|
||||
0x80, 0x00, 0x00, 0x00, 0x00, 0x00 };
|
@ -0,0 +1,6 @@
|
||||
#define desk_hover_width 15
|
||||
#define desk_hover_height 15
|
||||
static unsigned char desk_hover_bits[] = {
|
||||
0xe0, 0x03, 0xf8, 0x0f, 0xfc, 0x1f, 0xfe, 0x39, 0xfe, 0x30, 0x7f, 0x70,
|
||||
0x0f, 0x78, 0x1f, 0x7c, 0x3f, 0x7e, 0x5f, 0x7e, 0xee, 0x3e, 0xfe, 0x3f,
|
||||
0xfc, 0x1f, 0xf8, 0x0f, 0xe0, 0x03 };
|
@ -0,0 +1,6 @@
|
||||
#define desk_hover_width 15
|
||||
#define desk_hover_height 15
|
||||
static unsigned char desk_hover_bits[] = {
|
||||
0xe0, 0x03, 0xf8, 0x0f, 0x3c, 0x1e, 0x1e, 0x3c, 0x1e, 0x3c, 0x1f, 0x7c,
|
||||
0x1f, 0x7c, 0x1f, 0x7c, 0x0f, 0x78, 0x0f, 0x78, 0x7e, 0x3f, 0x7e, 0x3f,
|
||||
0x7c, 0x1f, 0xf8, 0x0f, 0xe0, 0x03 };
|
@ -0,0 +1,6 @@
|
||||
#define desk_pressed_width 15
|
||||
#define desk_pressed_height 15
|
||||
static unsigned char desk_pressed_bits[] = {
|
||||
0xe0, 0x03, 0xf8, 0x0f, 0xfc, 0x1f, 0xfe, 0x39, 0xfe, 0x30, 0x7f, 0x70,
|
||||
0x0f, 0x78, 0x1f, 0x7c, 0x3f, 0x7e, 0x5f, 0x7e, 0xee, 0x3e, 0xfe, 0x3f,
|
||||
0xfc, 0x1f, 0xf8, 0x0f, 0xe0, 0x03 };
|
@ -0,0 +1,6 @@
|
||||
#define desk_hover_width 15
|
||||
#define desk_hover_height 15
|
||||
static unsigned char desk_hover_bits[] = {
|
||||
0xe0, 0x03, 0xf8, 0x0f, 0x3c, 0x1e, 0x1e, 0x3c, 0x1e, 0x3c, 0x1f, 0x7c,
|
||||
0x1f, 0x7c, 0x1f, 0x7c, 0x0f, 0x78, 0x0f, 0x78, 0x7e, 0x3f, 0x7e, 0x3f,
|
||||
0x7c, 0x1f, 0xf8, 0x0f, 0xe0, 0x03 };
|
@ -0,0 +1,6 @@
|
||||
#define desk_toggled_width 15
|
||||
#define desk_toggled_height 15
|
||||
static unsigned char desk_toggled_bits[] = {
|
||||
0x00, 0x00, 0x00, 0x00, 0xc0, 0x01, 0xf0, 0x07, 0xf8, 0x0f, 0xf8, 0x0f,
|
||||
0x7c, 0x1f, 0x3c, 0x1e, 0x7c, 0x1f, 0xf8, 0x0f, 0xf8, 0x0f, 0xf0, 0x07,
|
||||
0xc0, 0x01, 0x00, 0x00, 0x00, 0x00 };
|
@ -0,0 +1,6 @@
|
||||
#define desk_toggled_hover_width 15
|
||||
#define desk_toggled_hover_height 15
|
||||
static unsigned char desk_toggled_hover_bits[] = {
|
||||
0xe0, 0x03, 0xf8, 0x0f, 0x3c, 0x1e, 0x0e, 0x38, 0x06, 0x30, 0x07, 0x70,
|
||||
0x83, 0x60, 0xc3, 0x61, 0x83, 0x60, 0x07, 0x70, 0x06, 0x30, 0x0e, 0x38,
|
||||
0x3c, 0x1e, 0xf8, 0x0f, 0xe0, 0x03 };
|
@ -0,0 +1,6 @@
|
||||
#define desk_toggled_hover_width 15
|
||||
#define desk_toggled_hover_height 15
|
||||
static unsigned char desk_toggled_hover_bits[] = {
|
||||
0xe0, 0x03, 0xf8, 0x0f, 0x3c, 0x1e, 0x0e, 0x38, 0x06, 0x30, 0x07, 0x70,
|
||||
0x83, 0x60, 0xc3, 0x61, 0x83, 0x60, 0x07, 0x70, 0x06, 0x30, 0x0e, 0x38,
|
||||
0x3c, 0x1e, 0xf8, 0x0f, 0xe0, 0x03 };
|
@ -0,0 +1,6 @@
|
||||
#define iconify_width 15
|
||||
#define iconify_height 15
|
||||
static unsigned char iconify_bits[] = {
|
||||
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x18, 0x0c,
|
||||
0x38, 0x0e, 0x70, 0x07, 0xe0, 0x03, 0xc0, 0x01, 0x80, 0x00, 0x00, 0x00,
|
||||
0x00, 0x00, 0x00, 0x00, 0x00, 0x00 };
|
@ -0,0 +1,6 @@
|
||||
#define iconify_hover_width 15
|
||||
#define iconify_hover_height 15
|
||||
static unsigned char iconify_hover_bits[] = {
|
||||
0xe0, 0x03, 0xf8, 0x0f, 0xfc, 0x1f, 0xfe, 0x3f, 0xfe, 0x3f, 0xe7, 0x73,
|
||||
0xc7, 0x71, 0x8f, 0x78, 0x1f, 0x7c, 0x3f, 0x7e, 0x7e, 0x3f, 0xfe, 0x3f,
|
||||
0xfc, 0x1f, 0xf8, 0x0f, 0xe0, 0x03 };
|
@ -0,0 +1,6 @@
|
||||
#define iconify_hover_width 15
|
||||
#define iconify_hover_height 15
|
||||
static unsigned char iconify_hover_bits[] = {
|
||||
0xe0, 0x03, 0xf8, 0x0f, 0xfc, 0x1f, 0xfe, 0x3f, 0xfe, 0x3f, 0xe7, 0x73,
|
||||
0xc7, 0x71, 0x8f, 0x78, 0x1f, 0x7c, 0x3f, 0x7e, 0x7e, 0x3f, 0xfe, 0x3f,
|
||||
0xfc, 0x1f, 0xf8, 0x0f, 0xe0, 0x03 };
|
@ -0,0 +1,6 @@
|
||||
#define max_width 15
|
||||
#define max_height 15
|
||||
static unsigned char max_bits[] = {
|
||||
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x80, 0x00, 0xc0, 0x01,
|
||||
0xe0, 0x03, 0x70, 0x07, 0x38, 0x0e, 0x18, 0x0c, 0x00, 0x00, 0x00, 0x00,
|
||||
0x00, 0x00, 0x00, 0x00, 0x00, 0x00 };
|
@ -0,0 +1,6 @@
|
||||
#define max_hover_width 15
|
||||
#define max_hover_height 15
|
||||
static unsigned char max_hover_bits[] = {
|
||||
0xe0, 0x03, 0xf8, 0x0f, 0xfc, 0x1f, 0xfe, 0x3f, 0x7e, 0x3f, 0x3f, 0x7e,
|
||||
0x1f, 0x7c, 0x8f, 0x78, 0xc7, 0x71, 0xe7, 0x73, 0xfe, 0x3f, 0xfe, 0x3f,
|
||||
0xfc, 0x1f, 0xf8, 0x0f, 0xe0, 0x03 };
|
@ -0,0 +1,6 @@
|
||||
#define max_hover_width 15
|
||||
#define max_hover_height 15
|
||||
static unsigned char max_hover_bits[] = {
|
||||
0xe0, 0x03, 0xf8, 0x0f, 0xfc, 0x1f, 0xfe, 0x3f, 0x7e, 0x3f, 0x3f, 0x7e,
|
||||
0x1f, 0x7c, 0x8f, 0x78, 0xc7, 0x71, 0xe7, 0x73, 0xfe, 0x3f, 0xfe, 0x3f,
|
||||
0xfc, 0x1f, 0xf8, 0x0f, 0xe0, 0x03 };
|
@ -0,0 +1,6 @@
|
||||
#define max_toggled_width 15
|
||||
#define max_toggled_height 15
|
||||
static unsigned char max_toggled_bits[] = {
|
||||
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc0, 0x01, 0xe0, 0x03, 0x70, 0x07,
|
||||
0x38, 0x0e, 0x18, 0x0c, 0x38, 0x0e, 0x70, 0x07, 0xe0, 0x03, 0xc0, 0x01,
|
||||
0x00, 0x00, 0x00, 0x00, 0x00, 0x00 };
|
@ -0,0 +1,6 @@
|
||||
#define max_toggled_hover_width 15
|
||||
#define max_toggled_hover_height 15
|
||||
static unsigned char max_toggled_hover_bits[] = {
|
||||
0xe0, 0x03, 0xf8, 0x0f, 0xfc, 0x1f, 0x3e, 0x3e, 0x1e, 0x3c, 0x8f, 0x78,
|
||||
0xc7, 0x71, 0xe7, 0x73, 0xc7, 0x71, 0x8f, 0x78, 0x1e, 0x3c, 0x3e, 0x3e,
|
||||
0xfc, 0x1f, 0xf8, 0x0f, 0xe0, 0x03 };
|
@ -0,0 +1,6 @@
|
||||
#define max_toggled_hover_width 15
|
||||
#define max_toggled_hover_height 15
|
||||
static unsigned char max_toggled_hover_bits[] = {
|
||||
0xe0, 0x03, 0xf8, 0x0f, 0xfc, 0x1f, 0x3e, 0x3e, 0x1e, 0x3c, 0x8f, 0x78,
|
||||
0xc7, 0x71, 0xe7, 0x73, 0xc7, 0x71, 0x8f, 0x78, 0x1e, 0x3c, 0x3e, 0x3e,
|
||||
0xfc, 0x1f, 0xf8, 0x0f, 0xe0, 0x03 };
|
@ -0,0 +1,6 @@
|
||||
#define shade_width 15
|
||||
#define shade_height 15
|
||||
static unsigned char shade_bits[] = {
|
||||
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf8, 0x0f, 0xf8, 0x0f, 0x00, 0x00,
|
||||
0x80, 0x00, 0xc0, 0x01, 0xe0, 0x03, 0x70, 0x07, 0x38, 0x0e, 0x18, 0x0c,
|
||||
0x00, 0x00, 0x00, 0x00, 0x00, 0x00 };
|
@ -0,0 +1,6 @@
|
||||
#define shade_hover_width 15
|
||||
#define shade_hover_height 15
|
||||
static unsigned char shade_hover_bits[] = {
|
||||
0xe0, 0x03, 0xf8, 0x0f, 0xfc, 0x1f, 0x06, 0x30, 0x06, 0x30, 0xff, 0x7f,
|
||||
0x7f, 0x7f, 0x3f, 0x7e, 0x1f, 0x7c, 0x8f, 0x78, 0xc6, 0x31, 0xe6, 0x33,
|
||||
0xfc, 0x1f, 0xf8, 0x0f, 0xe0, 0x03 };
|
@ -0,0 +1,6 @@
|
||||
#define shade_hover_width 15
|
||||
#define shade_hover_height 15
|
||||
static unsigned char shade_hover_bits[] = {
|
||||
0xe0, 0x03, 0xf8, 0x0f, 0xfc, 0x1f, 0x06, 0x30, 0x06, 0x30, 0xff, 0x7f,
|
||||
0x7f, 0x7f, 0x3f, 0x7e, 0x1f, 0x7c, 0x8f, 0x78, 0xc6, 0x31, 0xe6, 0x33,
|
||||
0xfc, 0x1f, 0xf8, 0x0f, 0xe0, 0x03 };
|
@ -0,0 +1,8 @@
|
||||
#define shade_toggled_width 17
|
||||
#define shade_toggled_height 17
|
||||
static unsigned char shade_toggled_bits[] = {
|
||||
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
|
||||
0xf0, 0x1f, 0x00, 0xf0, 0x1f, 0x00, 0x00, 0x00, 0x00, 0x30, 0x18, 0x00,
|
||||
0x70, 0x1c, 0x00, 0xe0, 0x0e, 0x00, 0xc0, 0x07, 0x00, 0x80, 0x03, 0x00,
|
||||
0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
|
||||
0x00, 0x00, 0x00 };
|
@ -0,0 +1,6 @@
|
||||
#define shade_toggled_hover_width 15
|
||||
#define shade_toggled_hover_height 15
|
||||
static unsigned char shade_toggled_hover_bits[] = {
|
||||
0xe0, 0x03, 0xf8, 0x0f, 0xfc, 0x1f, 0x06, 0x30, 0x06, 0x30, 0xff, 0x7f,
|
||||
0xe7, 0x73, 0xc7, 0x71, 0x8f, 0x78, 0x1f, 0x7c, 0x3e, 0x3e, 0x7e, 0x3f,
|
||||
0xfc, 0x1f, 0xf8, 0x0f, 0xe0, 0x03 };
|
@ -0,0 +1,6 @@
|
||||
#define shade_toggled_hover_width 15
|
||||
#define shade_toggled_hover_height 15
|
||||
static unsigned char shade_toggled_hover_bits[] = {
|
||||
0xe0, 0x03, 0xf8, 0x0f, 0xfc, 0x1f, 0x06, 0x30, 0x06, 0x30, 0xff, 0x7f,
|
||||
0xe7, 0x73, 0xc7, 0x71, 0x8f, 0x78, 0x1f, 0x7c, 0x3e, 0x3e, 0x7e, 0x3f,
|
||||
0xfc, 0x1f, 0xf8, 0x0f, 0xe0, 0x03 };
|
@ -0,0 +1,134 @@
|
||||
# LubuntuRound Openbox theme
|
||||
# Copyright (C) 2020 Lubuntu Team
|
||||
#
|
||||
# Inspired by horst3180's Arc GTK theme
|
||||
# https://github.com/horst3180/Arc-theme
|
||||
#
|
||||
# This program is free software: you can redistribute it and/or modify
|
||||
# it under the terms of the GNU General Public License as published by
|
||||
# the Free Software Foundation, either version 3 of the License, or
|
||||
# (at your option) any later version.
|
||||
#
|
||||
# This program is distributed in the hope that it will be useful,
|
||||
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
# GNU General Public License for more details.
|
||||
#
|
||||
# You should have received a copy of the GNU General Public License
|
||||
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
### WINDOW
|
||||
border.width: 1
|
||||
|
||||
window.client.padding.width: 0
|
||||
window.client.padding.height: 0
|
||||
window.handle.width: 0
|
||||
|
||||
padding.width: 4
|
||||
# padding.height: 3
|
||||
|
||||
window.active.border.color: #5294e2
|
||||
window.inactive.border.color: #2d3036
|
||||
window.active.title.separator.color: #2f343f
|
||||
window.inactive.title.separator.color: #2f343f
|
||||
window.active.client.color: #2d3036
|
||||
window.inactive.client.color: #2d3036
|
||||
|
||||
window.active.label.text.color: #D3DAE3
|
||||
window.inactive.label.text.color: #7F8388
|
||||
|
||||
window.active.button.unpressed.image.color: #D3DAE3
|
||||
window.active.button.pressed.image.color: #5294E2
|
||||
window.active.button.disabled.image.color: #2d3036
|
||||
window.active.button.hover.image.color: #afb8c5
|
||||
window.active.button.toggled.unpressed.image.color: #D3DAE3
|
||||
window.active.button.toggled.pressed.image.color: #5294E2
|
||||
window.active.button.toggled.hover.image.color: #afb8c5
|
||||
window.inactive.button.unpressed.image.color: #7F8388
|
||||
window.inactive.button.pressed.image.color: #5294E2
|
||||
window.inactive.button.disabled.image.color: #2d3036
|
||||
window.inactive.button.hover.image.color: #afb8c5
|
||||
window.inactive.button.toggled.unpressed.image.color: #7F8388
|
||||
window.inactive.button.toggled.pressed.image.color: #5294E2
|
||||
window.inactive.button.toggled.hover.image.color: #afb8c5
|
||||
window.active.button.close.hover.image.color:#BA63D1
|
||||
window.inactive.button.close.hover.image.color:#BA63D1
|
||||
|
||||
window.active.title.bg: flat solid
|
||||
window.active.title.bg.color: #2f343f
|
||||
window.active.label.bg: flat solid
|
||||
window.active.label.bg.color: #2f343f
|
||||
window.active.handle.bg: texture
|
||||
window.active.grip.bg: texture
|
||||
window.inactive.title.bg: flat solid
|
||||
window.inactive.title.bg.color: #2f343f
|
||||
window.inactive.label.bg: flat solid
|
||||
window.inactive.label.bg.color: #2f343f
|
||||
window.inactive.handle.bg: texture
|
||||
window.inactive.grip.bg: texture
|
||||
|
||||
window.active.button.unpressed.bg: parentrelative
|
||||
window.active.button.pressed.bg: parentrelative
|
||||
window.active.button.hover.bg: parentrelative
|
||||
window.active.button.disabled.bg: parentrelative
|
||||
window.active.button.toggled.unpressed.bg: parentrelative
|
||||
window.active.button.toggled.pressed.bg: parentrelative
|
||||
window.active.button.toggled.hover.bg: parentrelative
|
||||
window.inactive.button.unpressed.bg: parentrelative
|
||||
window.inactive.button.pressed.bg: parentrelative
|
||||
window.inactive.button.hover.bg: parentrelative
|
||||
window.inactive.button.disabled.bg: parentrelative
|
||||
window.inactive.button.toggled.unpressed.bg: parentrelative
|
||||
window.inactive.button.toggled.pressed.bg: parentrelative
|
||||
window.inactive.button.toggled.hover.bg: parentrelative
|
||||
|
||||
window.label.text.justify: center
|
||||
# window.active.label.text.font: size=13:shadow=y:shadowoffset=2:shadowtint=32:weight=0
|
||||
window.active.label.text.font: shadow=y: shadowoffset=2
|
||||
### MENU
|
||||
menu.border.width: 0
|
||||
menu.separator.width: 1
|
||||
menu.separator.padding.width: 10
|
||||
menu.separator.padding.height: 2
|
||||
|
||||
menu.overlap.x: 0
|
||||
menu.overlap.y: 0
|
||||
|
||||
menu.border.color: #aeb0b6
|
||||
menu.separator.color: #a8adb5
|
||||
|
||||
menu.title.text.color: #D3DAE3
|
||||
menu.items.text.color: #a8adb5
|
||||
menu.items.disabled.text.color: #76797F
|
||||
menu.items.active.text.color: #ffffff
|
||||
menu.items.active.disabled.text.color: #aeb0b6
|
||||
|
||||
menu.items.bg: flat solid
|
||||
menu.items.bg.color: #454a54
|
||||
menu.items.active.bg: flat solid
|
||||
menu.items.active.bg.color: #5294E2
|
||||
menu.title.bg: flat solid
|
||||
menu.title.bg.color: #2d3036
|
||||
|
||||
menu.title.text.justify: center
|
||||
|
||||
#menu.items.font: text shadow
|
||||
#menu.title.text.font: text shadow
|
||||
|
||||
### OSD
|
||||
osd.border.width: 1
|
||||
|
||||
osd.border.color: #2d3036
|
||||
|
||||
osd.label.text.color: #D3DAE3
|
||||
|
||||
osd.bg: flat solid
|
||||
osd.bg.color: #2f343f
|
||||
osd.label.bg: flat solid
|
||||
osd.label.bg.color: #2f343f
|
||||
osd.hilight.bg: flat solid
|
||||
osd.hilight.bg.color: #5294E2
|
||||
osd.unhilight.bg: flat solid
|
||||
osd.unhilight.bg.color: #000000
|
||||
|
||||
#osd.label.text.font: text shadow
|
Loading…
Reference in new issue