all repos — tint2 @ f13a7a13cb439559b7a794abfa7a7f4d881d88e1

fork of the tint2 desktop panel for my custom setup - only minimized windows across all desktops for the taskbar

fixed for issue 32

git-svn-id: http://tint2.googlecode.com/svn/trunk@461 121b4492-b84c-0410-8b4c-0d4edfb3f3cc
thilor77 thilor77@121b4492-b84c-0410-8b4c-0d4edfb3f3cc
commit

f13a7a13cb439559b7a794abfa7a7f4d881d88e1

parent

985af5f36addecb7f83dad9d7acdaf09b6bf8abc

3 files changed, 20 insertions(+), 15 deletions(-)

jump to
M sample/text_only_3.tint2rcsample/text_only_3.tint2rc

@@ -12,7 +12,7 @@

# ID 2 rounded = 1 border_width = 0 -background_color = #F6B655 86 +background_color = #F6B655 85 border_color = #CCCCCC 40 # Panel

@@ -31,7 +31,7 @@ autohide = 0

autohide_show_timeout = 0.0 autohide_hide_timeout = 0.0 autohide_height = 0 -strut_policy = none +strut_policy = follow_size # Taskbar taskbar_mode = single_desktop

@@ -76,7 +76,7 @@

# Clock time1_format = %H:%M time1_font = sans 13 -clock_font_color = #FFFFFF 86 +clock_font_color = #FFFFFF 85 clock_padding = 2 0 clock_background_id = 0

@@ -106,4 +106,4 @@ battery_font_color = #FFFFFF 100

battery_padding = 2 0 battery_background_id = 0 -# End of config+# End of config
M sample/text_only_4.tint2rcsample/text_only_4.tint2rc

@@ -7,12 +7,12 @@ # ID 1

rounded = 3 border_width = 1 background_color = #000000 40 -border_color = #D1D1D1 31 +border_color = #D1D1D1 30 # ID 2 rounded = 3 border_width = 1 -background_color = #000000 52 +background_color = #000000 51 border_color = #D1D1D1 40 # Panel

@@ -31,7 +31,7 @@ autohide = 0

autohide_show_timeout = 0.0 autohide_hide_timeout = 0.0 autohide_height = 0 -strut_policy = none +strut_policy = follow_size # Taskbar taskbar_mode = single_desktop

@@ -60,8 +60,8 @@

# Fonts task_font = sans bold 7.5 task_font_color = #FFFFFF 60 -task_active_font_color = #FFFFFF 87 -task_urgent_font_color = #FFFFFF 87 +task_active_font_color = #FFFFFF 86 +task_urgent_font_color = #FFFFFF 86 task_iconified_font_color = #FFFFFF 60 font_shadow = 0

@@ -99,4 +99,4 @@ battery_font_color = #FFFFFF 100

battery_padding = 1 0 battery_background_id = 0 -# End of config+# End of config
M src/tint.csrc/tint.c

@@ -318,7 +318,8 @@ return;

} task_drag = click_task(panel, e->xbutton.x, e->xbutton.y); - XLowerWindow (server.dsp, panel->main_win); + if (panel_layer == BOTTOM_LAYER) + XLowerWindow (server.dsp, panel->main_win); } void event_button_motion_notify (XEvent *e)

@@ -383,7 +384,8 @@ if (!panel) return;

if (wm_menu && !tint2_handles_click(panel, &e->xbutton)) { forward_click(e); - XLowerWindow (server.dsp, panel->main_win); + if (panel_layer == BOTTOM_LAYER) + XLowerWindow (server.dsp, panel->main_win); task_drag = 0; return; }

@@ -412,7 +414,8 @@ }

if ( click_clock(panel, e->xbutton.x, e->xbutton.y)) { clock_action(e->xbutton.button); - XLowerWindow (server.dsp, panel->main_win); + if (panel_layer == BOTTOM_LAYER) + XLowerWindow (server.dsp, panel->main_win); task_drag = 0; return; }

@@ -420,7 +423,8 @@

Taskbar *tskbar; if ( !(tskbar = click_taskbar(panel, e->xbutton.x, e->xbutton.y)) ) { // TODO: check better solution to keep window below - XLowerWindow (server.dsp, panel->main_win); + if (panel_layer == BOTTOM_LAYER) + XLowerWindow (server.dsp, panel->main_win); task_drag = 0; return; }

@@ -442,7 +446,8 @@ // action on task

window_action( click_task(panel, e->xbutton.x, e->xbutton.y), action); // to keep window below - XLowerWindow (server.dsp, panel->main_win); + if (panel_layer == BOTTOM_LAYER) + XLowerWindow (server.dsp, panel->main_win); }