diff options
Diffstat (limited to 'themes/Syscrash')
| -rw-r--r-- | themes/Syscrash/openbox-3/bullet.xbm | 4 | ||||
| -rw-r--r-- | themes/Syscrash/openbox-3/close.xbm | 4 | ||||
| -rw-r--r-- | themes/Syscrash/openbox-3/close_disabled.xbm | 4 | ||||
| -rw-r--r-- | themes/Syscrash/openbox-3/desk.xbm | 4 | ||||
| -rw-r--r-- | themes/Syscrash/openbox-3/desk_toggled.xbm | 4 | ||||
| -rw-r--r-- | themes/Syscrash/openbox-3/iconify.xbm | 4 | ||||
| -rw-r--r-- | themes/Syscrash/openbox-3/max.xbm | 4 | ||||
| -rw-r--r-- | themes/Syscrash/openbox-3/max_disabled.xbm | 4 | ||||
| -rw-r--r-- | themes/Syscrash/openbox-3/max_pressed.xbm | 4 | ||||
| -rw-r--r-- | themes/Syscrash/openbox-3/max_toggled.xbm | 4 | ||||
| -rw-r--r-- | themes/Syscrash/openbox-3/shade.xbm | 4 | ||||
| -rw-r--r-- | themes/Syscrash/openbox-3/themerc.xml | 132 |
12 files changed, 176 insertions, 0 deletions
diff --git a/themes/Syscrash/openbox-3/bullet.xbm b/themes/Syscrash/openbox-3/bullet.xbm new file mode 100644 index 00000000..88481ec8 --- /dev/null +++ b/themes/Syscrash/openbox-3/bullet.xbm @@ -0,0 +1,4 @@ +#define bullet_width 4 +#define bullet_height 7 +static unsigned char bullet_bits[] = { + 0x01, 0x03, 0x07, 0x0f, 0x07, 0x03, 0x01 }; diff --git a/themes/Syscrash/openbox-3/close.xbm b/themes/Syscrash/openbox-3/close.xbm new file mode 100644 index 00000000..4a88cff6 --- /dev/null +++ b/themes/Syscrash/openbox-3/close.xbm @@ -0,0 +1,4 @@ +#define close_width 6 +#define close_height 6 +static unsigned char close_bits[] = { + 0x33, 0x3f, 0x1e, 0x1e, 0x3f, 0x33 }; diff --git a/themes/Syscrash/openbox-3/close_disabled.xbm b/themes/Syscrash/openbox-3/close_disabled.xbm new file mode 100644 index 00000000..082582b9 --- /dev/null +++ b/themes/Syscrash/openbox-3/close_disabled.xbm @@ -0,0 +1,4 @@ +#define close_width 5 +#define close_height 5 +static unsigned char close_bits[] = { + 0x1b, 0x1f, 0x0e, 0x1f, 0x1b }; diff --git a/themes/Syscrash/openbox-3/desk.xbm b/themes/Syscrash/openbox-3/desk.xbm new file mode 100644 index 00000000..3e327e36 --- /dev/null +++ b/themes/Syscrash/openbox-3/desk.xbm @@ -0,0 +1,4 @@ +#define desk_width 6 +#define desk_height 6 +static unsigned char desk_bits[] = { + 0x33, 0x33, 0x00, 0x00, 0x33, 0x33 }; diff --git a/themes/Syscrash/openbox-3/desk_toggled.xbm b/themes/Syscrash/openbox-3/desk_toggled.xbm new file mode 100644 index 00000000..d7e045ee --- /dev/null +++ b/themes/Syscrash/openbox-3/desk_toggled.xbm @@ -0,0 +1,4 @@ +#define desk_toggle_width 6 +#define desk_toggle_height 6 +static unsigned char desk_toggle_bits[] = { + 0x00, 0x1e, 0x1a, 0x16, 0x1e, 0x00 }; diff --git a/themes/Syscrash/openbox-3/iconify.xbm b/themes/Syscrash/openbox-3/iconify.xbm new file mode 100644 index 00000000..23048669 --- /dev/null +++ b/themes/Syscrash/openbox-3/iconify.xbm @@ -0,0 +1,4 @@ +#define iconify_width 6 +#define iconify_height 6 +static unsigned char iconify_bits[] = { + 0x00, 0x00, 0x00, 0x00, 0x3f, 0x3f }; diff --git a/themes/Syscrash/openbox-3/max.xbm b/themes/Syscrash/openbox-3/max.xbm new file mode 100644 index 00000000..44c7cefc --- /dev/null +++ b/themes/Syscrash/openbox-3/max.xbm @@ -0,0 +1,4 @@ +#define max_width 6 +#define max_height 6 +static unsigned char max_bits[] = { + 0x3e, 0x22, 0x2f, 0x29, 0x39, 0x0f }; diff --git a/themes/Syscrash/openbox-3/max_disabled.xbm b/themes/Syscrash/openbox-3/max_disabled.xbm new file mode 100644 index 00000000..6d030af4 --- /dev/null +++ b/themes/Syscrash/openbox-3/max_disabled.xbm @@ -0,0 +1,4 @@ +#define max_width 6 +#define max_height 6 +static unsigned char max_bits[] = { + 0x3f, 0x3f, 0x21, 0x21, 0x21, 0x3f }; diff --git a/themes/Syscrash/openbox-3/max_pressed.xbm b/themes/Syscrash/openbox-3/max_pressed.xbm new file mode 100644 index 00000000..dd8e57e3 --- /dev/null +++ b/themes/Syscrash/openbox-3/max_pressed.xbm @@ -0,0 +1,4 @@ +#define max_width 5 +#define max_height 5 +static unsigned char max_bits[] = { + 0x1f, 0x1f, 0x11, 0x11, 0x1f }; diff --git a/themes/Syscrash/openbox-3/max_toggled.xbm b/themes/Syscrash/openbox-3/max_toggled.xbm new file mode 100644 index 00000000..020f779d --- /dev/null +++ b/themes/Syscrash/openbox-3/max_toggled.xbm @@ -0,0 +1,4 @@ +#define max_toggled_width 6 +#define max_toggled_height 6 +static unsigned char max_toggled_bits[] = { + 0x3c, 0x27, 0x25, 0x3d, 0x11, 0x1f }; diff --git a/themes/Syscrash/openbox-3/shade.xbm b/themes/Syscrash/openbox-3/shade.xbm new file mode 100644 index 00000000..7d65a3c0 --- /dev/null +++ b/themes/Syscrash/openbox-3/shade.xbm @@ -0,0 +1,4 @@ +#define shade_width 7 +#define shade_height 7 +static unsigned char shade_bits[] = { + 0x7f, 0x7f, 0x00, 0x00, 0x00, 0x00, 0x00 }; diff --git a/themes/Syscrash/openbox-3/themerc.xml b/themes/Syscrash/openbox-3/themerc.xml new file mode 100644 index 00000000..bd8d15db --- /dev/null +++ b/themes/Syscrash/openbox-3/themerc.xml @@ -0,0 +1,132 @@ +<?xml version="1.0"?> +<!-- syscrash's theme, based off nightm4re's flax or something --> +<openbox_theme version="1" xmlns="http://openbox.org/themerc"> + <dimensions> + <handle>0</handle> + <padding x="2" y="2"/> + </dimensions> + <window> + <border> + <width>1</width> + <primary r="155" g="155" b="155" a="255"/> + </border> + <clientpadding x="0" y="0"/> + <justify>left</justify> + <active> + <clientpadding r="76" g="76" b="76" a="255"/> + <label> + <text> + <primary r="255" g="255" b="255" a="255"/> + </text> + <style>flat gradient vertical border</style> + <primary r="76" g="76" b="76" a="255"/> + <secondary r="112" g="112" b="112" a="255"/> + </label> + <buttons> + <unpressed> + <image r="255" g="255" b="255" a="255"/> + <style>flat gradient vertical border</style> + <primary r="81" g="81" b="81" a="255"/> + <secondary r="103" g="103" b="103" a="255"/> + </unpressed> + <disabled> + <image r="159" g="191" b="193" a="255"/> + <style>parentrelative</style> + </disabled> + <pressed> + <style>flat gradient crossdiagonal border</style> + <primary r="211" g="222" b="218" a="255"/> + <secondary r="159" g="191" b="193" a="255"/> + </pressed> + <hover> + <style>flat solid border</style> + <primary r="230" g="230" b="224" a="255"/> + </hover> + </buttons> + <titlebar> + <style>flat solid</style> + <primary r="155" g="155" b="155" a="255"/> + </titlebar> + <handle> + <style>flat solid</style> + </handle> + <grip> + <style>flat solid</style> + <primary r="76" g="76" b="76" a="255"/> + <secondary r="112" g="112" b="112" a="255"/> + </grip> + </active> + <inactive> + <clientpadding r="112" g="112" b="112" a="255"/> + <label> + <text> + <primary r="76" g="76" b="76" a="255"/> + </text> + <style>parentrelative</style> + </label> + <buttons> + <unpressed> + <image r="76" g="76" b="76" a="255"/> + <style>parentrelative</style> + </unpressed> + <disabled> + <style>flat solid</style> + </disabled> + <pressed> + <style>flat gradient crossdiagonal border</style> + <primary r="211" g="222" b="218" a="255"/> + <secondary r="159" g="191" b="193" a="255"/> + </pressed> + <hover> + <style>flat solid border</style> + <primary r="230" g="230" b="224" a="255"/> + </hover> + </buttons> + <titlebar> + <style>flat solid</style> + <primary r="155" g="155" b="155" a="255"/> + </titlebar> + <handle> + <style>flat solid</style> + <primary r="230" g="230" b="224" a="255"/> + </handle> + <grip> + <style>flat solid</style> + <primary r="230" g="230" b="224" a="255"/> + </grip> + </inactive> + </window> + <menu> + <border> + <width>1</width> + <primary r="155" g="155" b="155" a="255"/> + </border> + <justify>left</justify> + <overlap>0</overlap> + <title> + <text> + <primary r="255" g="255" b="255" a="255"/> + </text> + <style>flat gradient vertical</style> + <primary r="76" g="76" b="76" a="255"/> + <secondary r="112" g="112" b="112" a="255"/> + </title> + <inactive> + <primary r="34" g="34" b="28" a="255"/> + </inactive> + <disabled> + <primary r="68" g="68" b="56" a="255"/> + </disabled> + <active> + <text> + <primary r="255" g="255" b="255" a="255"/> + </text> + <style>flat solid</style> + <primary r="76" g="76" b="76" a="255"/> + </active> + <entries> + <style>flat solid</style> + <primary r="230" g="230" b="224" a="255"/> + </entries> + </menu> +</openbox_theme> |
