Add option to hide tasks from different monitors when panel_monitor = x (issue 196)

git-svn-id: http://tint2.googlecode.com/svn/trunk@736 121b4492-b84c-0410-8b4c-0d4edfb3f3cc
This commit is contained in:
o9000
2015-03-21 09:49:10 +00:00
committed by mrovi9000@gmail.com
parent a2de8d6e53
commit c900bc24b2
8 changed files with 40 additions and 10 deletions

View File

@@ -44,6 +44,7 @@ Task *task_drag;
int taskbar_enabled;
int taskbar_distribute_size;
int hide_inactive_tasks;
int hide_task_diff_monitor;
guint win_hash(gconstpointer key) { return (guint)*((Window*)key); }
gboolean win_compare(gconstpointer a, gconstpointer b) { return (*((Window*)a) == *((Window*)b)); }
@@ -58,6 +59,7 @@ void default_taskbar()
taskbar_enabled = 0;
taskbar_distribute_size = 0;
hide_inactive_tasks = 0;
hide_task_diff_monitor = 0;
default_taskbarname();
}