Add borders for window resizing

This commit is contained in:
Defman21 2015-01-03 00:46:24 +03:00
parent 8934becb94
commit 15f175c999
10 changed files with 66 additions and 0 deletions

View File

@ -0,0 +1,7 @@
/* XPM */
static char * bottom_active_xpm[] = {
"1 2 2 1",
" c None",
". c #636E73",
".",
"."};

View File

@ -0,0 +1,7 @@
/* XPM */
static char * bottom_inactive_xpm[] = {
"1 2 2 1",
" c None",
". c #616C71",
".",
"."};

View File

@ -0,0 +1,7 @@
/* XPM */
static char * bottom_left_active_xpm[] = {
"2 2 2 1",
" c None",
". c #616C71",
"..",
".."};

View File

@ -0,0 +1,7 @@
/* XPM */
static char * bottom_left_inactive_xpm[] = {
"2 2 2 1",
" c None",
". c #616C71",
"..",
".."};

View File

@ -0,0 +1,7 @@
/* XPM */
static char * bottom_right_active_xpm[] = {
"2 2 2 1",
" c None",
". c #616C71",
"..",
".."};

View File

@ -0,0 +1,7 @@
/* XPM */
static char * bottom_right_inactive_xpm[] = {
"2 2 2 1",
" c None",
". c #616C71",
"..",
".."};

View File

@ -0,0 +1,6 @@
/* XPM */
static char * left_active_xpm[] = {
"2 1 2 1",
" c None",
". c #616C71",
".."};

View File

@ -0,0 +1,6 @@
/* XPM */
static char * left_inactive_xpm[] = {
"2 1 2 1",
" c None",
". c #616C71",
".."};

View File

@ -0,0 +1,6 @@
/* XPM */
static char * right_active_xpm[] = {
"2 1 2 1",
" c None",
". c #616C71",
".."};

View File

@ -0,0 +1,6 @@
/* XPM */
static char * right_inactive_xpm[] = {
"2 1 2 1",
" c None",
". c #616C71",
".."};