xfwm4: increase width of bottom edge
Increase the size of the bottom resize edge, and make the left-bottom and right-bottom corners larger, and "L"-shaped, for easier gripping. Rationale: Xfwm doesn't support magic window edges, so they need to be larger in order to be clickable. 2px is too narrow for this.pull/96/head
parent
73491d3470
commit
e836f9ae64
|
@ -1,8 +1,10 @@
|
||||||
/* XPM */
|
/* XPM */
|
||||||
static char * bottom_active_xpm[] = {
|
static char * bottom_active_xpm[] = {
|
||||||
"8 2 3 1",
|
"8 4 3 1",
|
||||||
" c None",
|
" c None",
|
||||||
". c #2D2D2D",
|
". c #2D2D2D",
|
||||||
"+ c #484848",
|
"+ c #484848",
|
||||||
"........",
|
"........",
|
||||||
|
"........",
|
||||||
|
"........",
|
||||||
"++++++++"};
|
"++++++++"};
|
||||||
|
|
|
@ -1,8 +1,10 @@
|
||||||
/* XPM */
|
/* XPM */
|
||||||
static char * bottom_inactive_xpm[] = {
|
static char * bottom_inactive_xpm[] = {
|
||||||
"8 2 3 1",
|
"8 4 3 1",
|
||||||
" c None",
|
" c None",
|
||||||
". c #2D2D2D",
|
". c #2D2D2D",
|
||||||
"+ c #393939",
|
"+ c #393939",
|
||||||
"........",
|
"........",
|
||||||
|
"........",
|
||||||
|
"........",
|
||||||
"++++++++"};
|
"++++++++"};
|
||||||
|
|
|
@ -1,8 +1,14 @@
|
||||||
/* XPM */
|
/* XPM */
|
||||||
static char * bottom_left_active_xpm[] = {
|
static char * bottom_left_active_xpm[] = {
|
||||||
"2 2 3 1",
|
"16 8 3 1",
|
||||||
" c None",
|
" c None",
|
||||||
". c #484848",
|
". c #484848",
|
||||||
"+ c #2D2D2D",
|
"+ c #2D2D2D",
|
||||||
".+",
|
".+ ",
|
||||||
".."};
|
".+ ",
|
||||||
|
".+ ",
|
||||||
|
".+ ",
|
||||||
|
".+++++++++++++++",
|
||||||
|
".+++++++++++++++",
|
||||||
|
".+++++++++++++++",
|
||||||
|
"................"};
|
||||||
|
|
|
@ -1,8 +1,14 @@
|
||||||
/* XPM */
|
/* XPM */
|
||||||
static char * bottom_left_inactive_xpm[] = {
|
static char * bottom_left_inactive_xpm[] = {
|
||||||
"2 2 3 1",
|
"16 8 3 1",
|
||||||
" c None",
|
" c None",
|
||||||
". c #393939",
|
". c #393939",
|
||||||
"+ c #2D2D2D",
|
"+ c #2D2D2D",
|
||||||
".+",
|
".+ ",
|
||||||
".."};
|
".+ ",
|
||||||
|
".+ ",
|
||||||
|
".+ ",
|
||||||
|
".+++++++++++++++",
|
||||||
|
".+++++++++++++++",
|
||||||
|
".+++++++++++++++",
|
||||||
|
"................"};
|
||||||
|
|
|
@ -1,8 +1,14 @@
|
||||||
/* XPM */
|
/* XPM */
|
||||||
static char * bottom_right_active_xpm[] = {
|
static char * bottom_right_active_xpm[] = {
|
||||||
"2 2 3 1",
|
"16 8 3 1",
|
||||||
" c None",
|
" c None",
|
||||||
". c #2D2D2D",
|
". c #2D2D2D",
|
||||||
"+ c #484848",
|
"+ c #484848",
|
||||||
".+",
|
" .+",
|
||||||
"++"};
|
" .+",
|
||||||
|
" .+",
|
||||||
|
" .+",
|
||||||
|
"...............+",
|
||||||
|
"...............+",
|
||||||
|
"...............+",
|
||||||
|
"++++++++++++++++"};
|
||||||
|
|
|
@ -1,8 +1,14 @@
|
||||||
/* XPM */
|
/* XPM */
|
||||||
static char * bottom_right_inactive_xpm[] = {
|
static char * bottom_right_inactive_xpm[] = {
|
||||||
"2 2 3 1",
|
"16 8 3 1",
|
||||||
" c None",
|
" c None",
|
||||||
". c #2D2D2D",
|
". c #2D2D2D",
|
||||||
"+ c #393939",
|
"+ c #393939",
|
||||||
".+",
|
" .+",
|
||||||
"++"};
|
" .+",
|
||||||
|
" .+",
|
||||||
|
" .+",
|
||||||
|
"...............+",
|
||||||
|
"...............+",
|
||||||
|
"...............+",
|
||||||
|
"++++++++++++++++"};
|
||||||
|
|
Loading…
Reference in New Issue