1 /**************************************************************************
3 * Tint2 : read/write config file
5 * Copyright (C) 2007 Pål Staurland (staura@gmail.com)
6 * Modified (C) 2008 thierry lorthiois (lorthiois@bbsoft.fr)
8 * This program is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU General Public License version 2
10 * as published by the Free Software Foundation.
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
19 **************************************************************************/
25 #include <cairo-xlib.h>
27 #include <X11/Xutil.h>
28 #include <X11/Xatom.h>
33 #include <glib/gstdio.h>
34 #include <pango/pangocairo.h>
35 #include <pango/pangoxft.h>
43 #include "systraybar.h"
55 char *config_path
= 0;
56 char *snapshot_path
= 0;
58 // --------------------------------------------------
59 // backward compatibility
60 static int old_task_icon_size
;
62 static int bg_task_active
;
63 // detect if it's an old config file
65 static int old_config_file
;
71 g_array_free(backgrounds
, 1);
72 backgrounds
= g_array_new(0, 0, sizeof(Background
));
74 // append full transparency background
75 Background transparent_bg
;
76 memset(&transparent_bg
, 0, sizeof(Background
));
77 g_array_append_val(backgrounds
, transparent_bg
);
79 // tint2 could reload config, so we cleanup objects
87 // panel's default value
88 if (panel_config
.g_task
.font_desc
) {
89 pango_font_description_free(panel_config
.g_task
.font_desc
);
91 memset(&panel_config
, 0, sizeof(Panel
));
93 for (i
=0; i
<TASK_STATE_COUNT
; ++i
)
94 panel_config
.g_task
.alpha
[i
] = 100;
99 // window manager's menu default value == false
103 // flush pango cache if possible
104 //pango_xft_shutdown_display(server.dsp, server.screen);
105 //PangoFontMap *font_map = pango_xft_get_font_map(server.dsp, server.screen);
106 //pango_fc_font_map_shutdown(font_map);
110 void cleanup_config()
115 void extract_values (const char *value
, char **value1
, char **value2
, char **value3
)
119 if (*value1
) free (*value1
);
120 if (*value2
) free (*value2
);
121 if (*value3
) free (*value3
);
123 if ((b
= strchr (value
, ' '))) {
131 *value1
= strdup (value
);
135 if ((c
= strchr (b
, ' '))) {
143 *value2
= strdup (b
);
148 *value3
= strdup (c
);
154 void get_action (char *event
, int *action
)
156 if (strcmp (event
, "none") == 0)
158 else if (strcmp (event
, "close") == 0)
160 else if (strcmp (event
, "toggle") == 0)
162 else if (strcmp (event
, "iconify") == 0)
164 else if (strcmp (event
, "shade") == 0)
166 else if (strcmp (event
, "toggle_iconify") == 0)
167 *action
= TOGGLE_ICONIFY
;
168 else if (strcmp (event
, "maximize_restore") == 0)
169 *action
= MAXIMIZE_RESTORE
;
170 else if (strcmp (event
, "desktop_left") == 0)
171 *action
= DESKTOP_LEFT
;
172 else if (strcmp (event
, "desktop_right") == 0)
173 *action
= DESKTOP_RIGHT
;
174 else if (strcmp (event
, "next_task") == 0)
176 else if (strcmp (event
, "prev_task") == 0)
181 int get_task_status(char* status
)
183 if (strcmp(status
, "active") == 0)
185 if (strcmp(status
, "iconified") == 0)
186 return TASK_ICONIFIED
;
187 if (strcmp(status
, "urgent") == 0)
193 void add_entry (char *key
, char *value
)
195 char *value1
=0, *value2
=0, *value3
=0;
197 /* Background and border */
198 if (strcmp (key
, "rounded") == 0) {
199 // 'rounded' is the first parameter => alloc a new background
201 bg
.border
.rounded
= atoi(value
);
202 g_array_append_val(backgrounds
, bg
);
204 else if (strcmp (key
, "border_width") == 0) {
205 g_array_index(backgrounds
, Background
, backgrounds
->len
-1).border
.width
= atoi(value
);
207 else if (strcmp (key
, "background_color") == 0) {
208 Background
* bg
= &g_array_index(backgrounds
, Background
, backgrounds
->len
-1);
209 extract_values(value
, &value1
, &value2
, &value3
);
210 get_color (value1
, bg
->back
.color
);
211 if (value2
) bg
->back
.alpha
= (atoi (value2
) / 100.0);
212 else bg
->back
.alpha
= 0.5;
214 else if (strcmp (key
, "border_color") == 0) {
215 Background
* bg
= &g_array_index(backgrounds
, Background
, backgrounds
->len
-1);
216 extract_values(value
, &value1
, &value2
, &value3
);
217 get_color (value1
, bg
->border
.color
);
218 if (value2
) bg
->border
.alpha
= (atoi (value2
) / 100.0);
219 else bg
->border
.alpha
= 0.5;
223 else if (strcmp (key
, "panel_monitor") == 0) {
224 if (strcmp (value
, "all") == 0) panel_config
.monitor
= -1;
226 panel_config
.monitor
= atoi (value
);
227 if (panel_config
.monitor
> 0) panel_config
.monitor
-= 1;
230 else if (strcmp (key
, "panel_size") == 0) {
231 extract_values(value
, &value1
, &value2
, &value3
);
234 if ((b
= strchr (value1
, '%'))) {
236 panel_config
.pourcentx
= 1;
238 panel_config
.area
.width
= atoi(value1
);
239 if (panel_config
.area
.width
== 0) {
241 panel_config
.area
.width
= 100;
242 panel_config
.pourcentx
= 1;
245 if ((b
= strchr (value2
, '%'))) {
247 panel_config
.pourcenty
= 1;
249 panel_config
.area
.height
= atoi(value2
);
252 else if (strcmp (key
, "panel_margin") == 0) {
253 extract_values(value
, &value1
, &value2
, &value3
);
254 panel_config
.marginx
= atoi (value1
);
255 if (value2
) panel_config
.marginy
= atoi (value2
);
257 else if (strcmp (key
, "panel_padding") == 0) {
258 extract_values(value
, &value1
, &value2
, &value3
);
259 panel_config
.area
.paddingxlr
= panel_config
.area
.paddingx
= atoi (value1
);
260 if (value2
) panel_config
.area
.paddingy
= atoi (value2
);
261 if (value3
) panel_config
.area
.paddingx
= atoi (value3
);
263 else if (strcmp (key
, "panel_position") == 0) {
264 extract_values(value
, &value1
, &value2
, &value3
);
265 if (strcmp (value1
, "top") == 0) panel_position
= TOP
;
267 if (strcmp (value1
, "bottom") == 0) panel_position
= BOTTOM
;
268 else panel_position
= CENTER
;
271 if (!value2
) panel_position
|= CENTER
;
273 if (strcmp (value2
, "left") == 0) panel_position
|= LEFT
;
275 if (strcmp (value2
, "right") == 0) panel_position
|= RIGHT
;
276 else panel_position
|= CENTER
;
279 if (!value3
) panel_horizontal
= 1;
281 if (strcmp (value3
, "vertical") == 0) panel_horizontal
= 0;
282 else panel_horizontal
= 1;
285 else if (strcmp (key
, "font_shadow") == 0)
286 panel_config
.g_task
.font_shadow
= atoi (value
);
287 else if (strcmp (key
, "panel_background_id") == 0) {
288 int id
= atoi (value
);
289 id
= (id
< backgrounds
->len
&& id
>= 0) ? id
: 0;
290 panel_config
.area
.bg
= &g_array_index(backgrounds
, Background
, id
);
292 else if (strcmp (key
, "wm_menu") == 0)
293 wm_menu
= atoi (value
);
294 else if (strcmp (key
, "panel_dock") == 0)
295 panel_dock
= atoi (value
);
296 else if (strcmp (key
, "urgent_nb_of_blink") == 0)
297 max_tick_urgent
= (atoi (value
) * 2) + 1;
298 else if (strcmp (key
, "real_transparency") == 0)
299 real_transparency
= atoi(value
);
300 else if (strcmp (key
, "panel_layer") == 0) {
301 if (strcmp(value
, "bottom") == 0)
302 panel_layer
= BOTTOM_LAYER
;
303 else if (strcmp(value
, "normal") == 0)
304 panel_layer
= NORMAL_LAYER
;
305 else if (strcmp(value
, "top") == 0)
306 panel_layer
= TOP_LAYER
;
310 else if (strcmp (key
, "battery") == 0) {
311 #ifdef ENABLE_BATTERY
316 fprintf(stderr
, "tint2 is build without battery support\n");
319 else if (strcmp (key
, "battery_low_status") == 0) {
320 #ifdef ENABLE_BATTERY
321 battery_low_status
= atoi(value
);
322 if(battery_low_status
< 0 || battery_low_status
> 100)
323 battery_low_status
= 0;
326 else if (strcmp (key
, "battery_low_cmd") == 0) {
327 #ifdef ENABLE_BATTERY
328 if (strlen(value
) > 0)
329 battery_low_cmd
= strdup (value
);
332 else if (strcmp (key
, "bat1_font") == 0) {
333 #ifdef ENABLE_BATTERY
334 bat1_font_desc
= pango_font_description_from_string (value
);
337 else if (strcmp (key
, "bat2_font") == 0) {
338 #ifdef ENABLE_BATTERY
339 bat2_font_desc
= pango_font_description_from_string (value
);
342 else if (strcmp (key
, "battery_font_color") == 0) {
343 #ifdef ENABLE_BATTERY
344 extract_values(value
, &value1
, &value2
, &value3
);
345 get_color (value1
, panel_config
.battery
.font
.color
);
346 if (value2
) panel_config
.battery
.font
.alpha
= (atoi (value2
) / 100.0);
347 else panel_config
.battery
.font
.alpha
= 0.5;
350 else if (strcmp (key
, "battery_padding") == 0) {
351 #ifdef ENABLE_BATTERY
352 extract_values(value
, &value1
, &value2
, &value3
);
353 panel_config
.battery
.area
.paddingxlr
= panel_config
.battery
.area
.paddingx
= atoi (value1
);
354 if (value2
) panel_config
.battery
.area
.paddingy
= atoi (value2
);
355 if (value3
) panel_config
.battery
.area
.paddingx
= atoi (value3
);
358 else if (strcmp (key
, "battery_background_id") == 0) {
359 #ifdef ENABLE_BATTERY
360 int id
= atoi (value
);
361 id
= (id
< backgrounds
->len
&& id
>= 0) ? id
: 0;
362 panel_config
.battery
.area
.bg
= &g_array_index(backgrounds
, Background
, id
);
367 else if (strcmp (key
, "time1_format") == 0) {
368 if (strlen(value
) > 0) {
369 time1_format
= strdup (value
);
373 else if (strcmp (key
, "time2_format") == 0) {
374 if (strlen(value
) > 0)
375 time2_format
= strdup (value
);
377 else if (strcmp (key
, "time1_font") == 0) {
378 time1_font_desc
= pango_font_description_from_string (value
);
380 else if (strcmp(key
, "time1_timezone") == 0) {
381 if (strlen(value
) > 0)
382 time1_timezone
= strdup(value
);
384 else if (strcmp(key
, "time2_timezone") == 0) {
385 if (strlen(value
) > 0)
386 time2_timezone
= strdup(value
);
388 else if (strcmp (key
, "time2_font") == 0) {
389 time2_font_desc
= pango_font_description_from_string (value
);
391 else if (strcmp (key
, "clock_font_color") == 0) {
392 extract_values(value
, &value1
, &value2
, &value3
);
393 get_color (value1
, panel_config
.clock
.font
.color
);
394 if (value2
) panel_config
.clock
.font
.alpha
= (atoi (value2
) / 100.0);
395 else panel_config
.clock
.font
.alpha
= 0.5;
397 else if (strcmp (key
, "clock_padding") == 0) {
398 extract_values(value
, &value1
, &value2
, &value3
);
399 panel_config
.clock
.area
.paddingxlr
= panel_config
.clock
.area
.paddingx
= atoi (value1
);
400 if (value2
) panel_config
.clock
.area
.paddingy
= atoi (value2
);
401 if (value3
) panel_config
.clock
.area
.paddingx
= atoi (value3
);
403 else if (strcmp (key
, "clock_background_id") == 0) {
404 int id
= atoi (value
);
405 id
= (id
< backgrounds
->len
&& id
>= 0) ? id
: 0;
406 panel_config
.clock
.area
.bg
= &g_array_index(backgrounds
, Background
, id
);
408 else if (strcmp(key
, "clock_tooltip") == 0) {
409 if (strlen(value
) > 0)
410 time_tooltip_format
= strdup (value
);
412 else if (strcmp(key
, "clock_tooltip_timezone") == 0) {
413 if (strlen(value
) > 0)
414 time_tooltip_timezone
= strdup(value
);
416 else if (strcmp(key
, "clock_lclick_command") == 0) {
417 if (strlen(value
) > 0)
418 clock_lclick_command
= strdup(value
);
420 else if (strcmp(key
, "clock_rclick_command") == 0) {
421 if (strlen(value
) > 0)
422 clock_rclick_command
= strdup(value
);
426 else if (strcmp (key
, "taskbar_mode") == 0) {
427 if (strcmp (value
, "multi_desktop") == 0) panel_mode
= MULTI_DESKTOP
;
428 else panel_mode
= SINGLE_DESKTOP
;
430 else if (strcmp (key
, "taskbar_padding") == 0) {
431 extract_values(value
, &value1
, &value2
, &value3
);
432 panel_config
.g_taskbar
.area
.paddingxlr
= panel_config
.g_taskbar
.area
.paddingx
= atoi (value1
);
433 if (value2
) panel_config
.g_taskbar
.area
.paddingy
= atoi (value2
);
434 if (value3
) panel_config
.g_taskbar
.area
.paddingx
= atoi (value3
);
436 else if (strcmp (key
, "taskbar_background_id") == 0) {
437 int id
= atoi (value
);
438 id
= (id
< backgrounds
->len
&& id
>= 0) ? id
: 0;
439 panel_config
.g_taskbar
.bg
= &g_array_index(backgrounds
, Background
, id
);
440 panel_config
.g_taskbar
.area
.bg
= panel_config
.g_taskbar
.bg
;
442 else if (strcmp (key
, "taskbar_active_background_id") == 0) {
443 int id
= atoi (value
);
444 id
= (id
< backgrounds
->len
&& id
>= 0) ? id
: 0;
445 panel_config
.g_taskbar
.bg_active
= &g_array_index(backgrounds
, Background
, id
);
446 panel_config
.g_taskbar
.use_active
= 1;
450 else if (strcmp (key
, "task_text") == 0)
451 panel_config
.g_task
.text
= atoi (value
);
452 else if (strcmp (key
, "task_icon") == 0)
453 panel_config
.g_task
.icon
= atoi (value
);
454 else if (strcmp (key
, "task_centered") == 0)
455 panel_config
.g_task
.centered
= atoi (value
);
456 else if (strcmp (key
, "task_width") == 0) {
457 // old parameter : just for backward compatibility
458 panel_config
.g_task
.maximum_width
= atoi (value
);
459 panel_config
.g_task
.maximum_height
= 30;
461 else if (strcmp (key
, "task_maximum_size") == 0) {
462 extract_values(value
, &value1
, &value2
, &value3
);
463 panel_config
.g_task
.maximum_width
= atoi (value1
);
464 panel_config
.g_task
.maximum_height
= 30;
466 panel_config
.g_task
.maximum_height
= atoi (value2
);
468 else if (strcmp (key
, "task_padding") == 0) {
469 extract_values(value
, &value1
, &value2
, &value3
);
470 panel_config
.g_task
.area
.paddingxlr
= panel_config
.g_task
.area
.paddingx
= atoi (value1
);
471 if (value2
) panel_config
.g_task
.area
.paddingy
= atoi (value2
);
472 if (value3
) panel_config
.g_task
.area
.paddingx
= atoi (value3
);
474 else if (strcmp (key
, "task_font") == 0) {
475 panel_config
.g_task
.font_desc
= pango_font_description_from_string (value
);
477 else if (g_regex_match_simple("task.*_font_color", key
, 0, 0)) {
478 gchar
** split
= g_regex_split_simple("_", key
, 0, 0);
479 int status
= get_task_status(split
[1]);
481 extract_values(value
, &value1
, &value2
, &value3
);
483 if (value2
) alpha
= (atoi (value2
) / 100.0);
484 get_color (value1
, panel_config
.g_task
.font
[status
].color
);
485 panel_config
.g_task
.font
[status
].alpha
= alpha
;
486 panel_config
.g_task
.config_font_mask
|= (1<<status
);
488 else if (g_regex_match_simple("task.*_icon_asb", key
, 0, 0)) {
489 gchar
** split
= g_regex_split_simple("_", key
, 0, 0);
490 int status
= get_task_status(split
[1]);
492 extract_values(value
, &value1
, &value2
, &value3
);
493 panel_config
.g_task
.alpha
[status
] = atoi(value1
);
494 panel_config
.g_task
.saturation
[status
] = atoi(value2
);
495 panel_config
.g_task
.brightness
[status
] = atoi(value3
);
496 panel_config
.g_task
.config_asb_mask
|= (1<<status
);
498 else if (g_regex_match_simple("task.*_background_id", key
, 0, 0)) {
499 gchar
** split
= g_regex_split_simple("_", key
, 0, 0);
500 int status
= get_task_status(split
[1]);
502 int id
= atoi (value
);
503 id
= (id
< backgrounds
->len
&& id
>= 0) ? id
: 0;
504 panel_config
.g_task
.background
[status
] = &g_array_index(backgrounds
, Background
, id
);
505 panel_config
.g_task
.config_background_mask
|= (1<<status
);
506 if (status
== TASK_NORMAL
) panel_config
.g_task
.area
.bg
= panel_config
.g_task
.background
[TASK_NORMAL
];
510 else if (strcmp (key
, "systray") == 0) {
511 systray_enabled
= atoi(value
);
512 // systray is latest option added. files without 'systray' are old.
515 else if (strcmp (key
, "systray_padding") == 0) {
518 extract_values(value
, &value1
, &value2
, &value3
);
519 systray
.area
.paddingxlr
= systray
.area
.paddingx
= atoi (value1
);
520 if (value2
) systray
.area
.paddingy
= atoi (value2
);
521 if (value3
) systray
.area
.paddingx
= atoi (value3
);
523 else if (strcmp (key
, "systray_background_id") == 0) {
524 int id
= atoi (value
);
525 id
= (id
< backgrounds
->len
&& id
>= 0) ? id
: 0;
526 systray
.area
.bg
= &g_array_index(backgrounds
, Background
, id
);
528 else if (strcmp(key
, "systray_sort") == 0) {
529 if (strcmp(value
, "descending") == 0)
531 else if (strcmp(value
, "ascending") == 0)
533 else if (strcmp(value
, "left2right") == 0)
535 else if (strcmp(value
, "right2left") == 0)
538 else if (strcmp(key
, "systray_icon_size") == 0) {
539 systray_max_icon_size
= atoi(value
);
541 else if (strcmp(key
, "systray_icon_asb") == 0) {
542 extract_values(value
, &value1
, &value2
, &value3
);
543 systray
.alpha
= atoi(value1
);
544 systray
.saturation
= atoi(value2
);
545 systray
.brightness
= atoi(value3
);
549 else if (strcmp (key
, "tooltip") == 0)
550 g_tooltip
.enabled
= atoi(value
);
551 else if (strcmp (key
, "tooltip_show_timeout") == 0) {
552 int timeout_msec
= 1000*atof(value
);
553 g_tooltip
.show_timeout_msec
= timeout_msec
;
555 else if (strcmp (key
, "tooltip_hide_timeout") == 0) {
556 int timeout_msec
= 1000*atof(value
);
557 g_tooltip
.hide_timeout_msec
= timeout_msec
;
559 else if (strcmp (key
, "tooltip_padding") == 0) {
560 extract_values(value
, &value1
, &value2
, &value3
);
561 if (value1
) g_tooltip
.paddingx
= atoi(value1
);
562 if (value2
) g_tooltip
.paddingy
= atoi(value2
);
564 else if (strcmp (key
, "tooltip_background_id") == 0) {
565 int id
= atoi (value
);
566 id
= (id
< backgrounds
->len
&& id
>= 0) ? id
: 0;
567 g_tooltip
.bg
= &g_array_index(backgrounds
, Background
, id
);
569 else if (strcmp (key
, "tooltip_font_color") == 0) {
570 extract_values(value
, &value1
, &value2
, &value3
);
571 get_color(value1
, g_tooltip
.font_color
.color
);
572 if (value2
) g_tooltip
.font_color
.alpha
= (atoi (value2
) / 100.0);
573 else g_tooltip
.font_color
.alpha
= 0.1;
575 else if (strcmp (key
, "tooltip_font") == 0) {
576 g_tooltip
.font_desc
= pango_font_description_from_string(value
);
580 else if (strcmp (key
, "mouse_middle") == 0)
581 get_action (value
, &mouse_middle
);
582 else if (strcmp (key
, "mouse_right") == 0)
583 get_action (value
, &mouse_right
);
584 else if (strcmp (key
, "mouse_scroll_up") == 0)
585 get_action (value
, &mouse_scroll_up
);
586 else if (strcmp (key
, "mouse_scroll_down") == 0)
587 get_action (value
, &mouse_scroll_down
);
589 /* autohide options */
590 else if (strcmp(key
, "autohide") == 0)
591 panel_autohide
= atoi(value
);
592 else if (strcmp(key
, "autohide_show_timeout") == 0)
593 panel_autohide_show_timeout
= 1000*atof(value
);
594 else if (strcmp(key
, "autohide_hide_timeout") == 0)
595 panel_autohide_hide_timeout
= 1000*atof(value
);
596 else if (strcmp(key
, "strut_policy") == 0) {
597 if (strcmp(value
, "follow_size") == 0)
598 panel_strut_policy
= STRUT_FOLLOW_SIZE
;
600 panel_strut_policy
= STRUT_MINIMUM
;
602 else if (strcmp(key
, "autohide_height") == 0)
603 panel_autohide_height
= atoi(value
);
606 // QUESTION: Do we still need backwards compatibility???
607 /* Read tint-0.6 config for backward compatibility */
608 else if (strcmp (key
, "panel_mode") == 0) {
609 if (strcmp (value
, "single_desktop") == 0) panel_mode
= SINGLE_DESKTOP
;
610 else panel_mode
= MULTI_DESKTOP
;
612 else if (strcmp (key
, "panel_rounded") == 0) {
614 bg
.border
.rounded
= atoi(value
);
615 g_array_append_val(backgrounds
, bg
);
617 else if (strcmp (key
, "panel_border_width") == 0) {
618 g_array_index(backgrounds
, Background
, backgrounds
->len
-1).border
.width
= atoi(value
);
620 else if (strcmp (key
, "panel_background_color") == 0) {
621 Background
* bg
= &g_array_index(backgrounds
, Background
, backgrounds
->len
-1);
622 extract_values(value
, &value1
, &value2
, &value3
);
623 get_color (value1
, bg
->back
.color
);
624 if (value2
) bg
->back
.alpha
= (atoi (value2
) / 100.0);
625 else bg
->back
.alpha
= 0.5;
627 else if (strcmp (key
, "panel_border_color") == 0) {
628 Background
* bg
= &g_array_index(backgrounds
, Background
, backgrounds
->len
-1);
629 extract_values(value
, &value1
, &value2
, &value3
);
630 get_color (value1
, bg
->border
.color
);
631 if (value2
) bg
->border
.alpha
= (atoi (value2
) / 100.0);
632 else bg
->border
.alpha
= 0.5;
634 else if (strcmp (key
, "task_text_centered") == 0)
635 panel_config
.g_task
.centered
= atoi (value
);
636 else if (strcmp (key
, "task_margin") == 0) {
637 panel_config
.g_taskbar
.area
.paddingxlr
= 0;
638 panel_config
.g_taskbar
.area
.paddingx
= atoi (value
);
640 else if (strcmp (key
, "task_icon_size") == 0)
641 old_task_icon_size
= atoi (value
);
642 else if (strcmp (key
, "task_rounded") == 0) {
644 bg
.border
.rounded
= atoi(value
);
645 g_array_append_val(backgrounds
, bg
);
646 g_array_append_val(backgrounds
, bg
);
647 bg_task
= backgrounds
->len
-2;
648 bg_task_active
= backgrounds
->len
-1;
650 else if (strcmp (key
, "task_background_color") == 0) {
651 Background
* bg
= &g_array_index(backgrounds
, Background
, bg_task
);
652 extract_values(value
, &value1
, &value2
, &value3
);
653 get_color (value1
, bg
->back
.color
);
654 if (value2
) bg
->back
.alpha
= (atoi (value2
) / 100.0);
655 else bg
->back
.alpha
= 0.5;
657 else if (strcmp (key
, "task_active_background_color") == 0) {
658 Background
* bg
= &g_array_index(backgrounds
, Background
, bg_task_active
);
659 extract_values(value
, &value1
, &value2
, &value3
);
660 get_color (value1
, bg
->back
.color
);
661 if (value2
) bg
->back
.alpha
= (atoi (value2
) / 100.0);
662 else bg
->back
.alpha
= 0.5;
664 else if (strcmp (key
, "task_border_width") == 0) {
665 Background
* bg
= &g_array_index(backgrounds
, Background
, bg_task
);
666 bg
->border
.width
= atoi (value
);
667 bg
= &g_array_index(backgrounds
, Background
, bg_task_active
);
668 bg
->border
.width
= atoi (value
);
670 else if (strcmp (key
, "task_border_color") == 0) {
671 Background
* bg
= &g_array_index(backgrounds
, Background
, bg_task
);
672 extract_values(value
, &value1
, &value2
, &value3
);
673 get_color (value1
, bg
->border
.color
);
674 if (value2
) bg
->border
.alpha
= (atoi (value2
) / 100.0);
675 else bg
->border
.alpha
= 0.5;
677 else if (strcmp (key
, "task_active_border_color") == 0) {
678 Background
* bg
= &g_array_index(backgrounds
, Background
, bg_task_active
);
679 extract_values(value
, &value1
, &value2
, &value3
);
680 get_color (value1
, bg
->border
.color
);
681 if (value2
) bg
->border
.alpha
= (atoi (value2
) / 100.0);
682 else bg
->border
.alpha
= 0.5;
686 fprintf(stderr
, "tint2 : invalid option \"%s\", correct your config file\n", key
);
688 if (value1
) free (value1
);
689 if (value2
) free (value2
);
690 if (value3
) free (value3
);
696 const gchar
* const * system_dirs
;
700 // follow XDG specification
701 // check tint2rc in user directory
702 path1
= g_build_filename (g_get_user_config_dir(), "tint2", "tint2rc", NULL
);
703 if (g_file_test (path1
, G_FILE_TEST_EXISTS
)) {
704 i
= config_read_file (path1
);
705 config_path
= strdup(path1
);
711 // copy tint2rc from system directory to user directory
713 system_dirs
= g_get_system_config_dirs();
714 for (i
= 0; system_dirs
[i
]; i
++) {
715 path2
= g_build_filename(system_dirs
[i
], "tint2", "tint2rc", NULL
);
717 if (g_file_test(path2
, G_FILE_TEST_EXISTS
)) break;
723 // copy file in user directory (path1)
724 char *dir
= g_build_filename (g_get_user_config_dir(), "tint2", NULL
);
725 if (!g_file_test (dir
, G_FILE_TEST_IS_DIR
)) g_mkdir(dir
, 0777);
728 path1
= g_build_filename (g_get_user_config_dir(), "tint2", "tint2rc", NULL
);
729 copy_file(path2
, path1
);
732 i
= config_read_file (path1
);
733 config_path
= strdup(path1
);
741 int config_read_file (const char *path
)
747 if ((fp
= fopen(path
, "r")) == NULL
) return 0;
749 while (fgets(line
, sizeof(line
), fp
) != NULL
) {
750 if (parse_line(line
, &key
, &value
)) {
751 add_entry (key
, value
);
758 if (old_task_icon_size
) {
759 panel_config
.g_task
.area
.paddingy
= ((int)panel_config
.area
.height
- (2 * panel_config
.area
.paddingy
) - old_task_icon_size
) / 2;