]> Dogcows Code - chaz/tint2/blob - src/config.c
fixed issue 165 backward compatibility
[chaz/tint2] / src / config.c
1 /**************************************************************************
2 *
3 * Tint2 : read/write config file
4 *
5 * Copyright (C) 2007 Pål Staurland (staura@gmail.com)
6 * Modified (C) 2008 thierry lorthiois (lorthiois@bbsoft.fr)
7 *
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.
11 *
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 **************************************************************************/
20
21 #include <sys/stat.h>
22 #include <sys/time.h>
23 #include <unistd.h>
24 #include <cairo.h>
25 #include <cairo-xlib.h>
26 #include <X11/Xlib.h>
27 #include <X11/Xutil.h>
28 #include <X11/Xatom.h>
29 #include <stdio.h>
30 #include <stdlib.h>
31 #include <string.h>
32 #include <ctype.h>
33 #include <glib/gstdio.h>
34 #include <pango/pangocairo.h>
35 #include <pango/pangoxft.h>
36 #include <Imlib2.h>
37
38 #include "common.h"
39 #include "server.h"
40 #include "panel.h"
41 #include "task.h"
42 #include "taskbar.h"
43 #include "systraybar.h"
44 #include "clock.h"
45 #include "config.h"
46 #include "window.h"
47 #include "tooltip.h"
48
49 #ifdef ENABLE_BATTERY
50 #include "battery.h"
51 #endif
52
53 // global path
54 char *config_path = 0;
55 char *thumbnail_path = 0;
56
57 // --------------------------------------------------
58 // backward compatibility
59 static int old_task_icon_size;
60 static Area *area_task;
61 static Area *area_task_active;
62 // detect if it's an old config file
63 // ==1
64 static int old_config_file;
65
66 // temporary list of background
67 static GSList *list_back;
68
69
70
71 void init_config()
72 {
73 // append full transparency background
74 list_back = g_slist_append(0, calloc(1, sizeof(Area)));
75
76 // tint2 could reload config, so we cleanup objects
77 cleanup_systray();
78 #ifdef ENABLE_BATTERY
79 cleanup_battery();
80 #endif
81 cleanup_clock();
82 cleanup_tooltip();
83
84 // panel's default value
85 if (panel_config.g_task.font_desc) {
86 pango_font_description_free(panel_config.g_task.font_desc);
87 }
88 memset(&panel_config, 0, sizeof(Panel));
89 panel_config.g_task.alpha = 100;
90 panel_config.g_task.alpha_active = 100;
91 systray.sort = 3;
92 old_config_file = 1;
93
94 // window manager's menu default value == false
95 wm_menu = 0;
96 max_tick_urgent = 7;
97
98 // flush pango cache if possible
99 //pango_xft_shutdown_display(server.dsp, server.screen);
100 //PangoFontMap *font_map = pango_xft_get_font_map(server.dsp, server.screen);
101 //pango_fc_font_map_shutdown(font_map);
102 }
103
104
105 void cleanup_config()
106 {
107 // cleanup background list
108 GSList *l0;
109 for (l0 = list_back; l0 ; l0 = l0->next) {
110 free(l0->data);
111 }
112 g_slist_free(list_back);
113 list_back = NULL;
114 }
115
116
117 void extract_values (const char *value, char **value1, char **value2, char **value3)
118 {
119 char *b=0, *c=0;
120
121 if (*value1) free (*value1);
122 if (*value2) free (*value2);
123 if (*value3) free (*value3);
124
125 if ((b = strchr (value, ' '))) {
126 b[0] = '\0';
127 b++;
128 }
129 else {
130 *value2 = 0;
131 *value3 = 0;
132 }
133 *value1 = strdup (value);
134 g_strstrip(*value1);
135
136 if (b) {
137 if ((c = strchr (b, ' '))) {
138 c[0] = '\0';
139 c++;
140 }
141 else {
142 c = 0;
143 *value3 = 0;
144 }
145 *value2 = strdup (b);
146 g_strstrip(*value2);
147 }
148
149 if (c) {
150 *value3 = strdup (c);
151 g_strstrip(*value3);
152 }
153 }
154
155
156 void get_action (char *event, int *action)
157 {
158 if (strcmp (event, "none") == 0)
159 *action = NONE;
160 else if (strcmp (event, "close") == 0)
161 *action = CLOSE;
162 else if (strcmp (event, "toggle") == 0)
163 *action = TOGGLE;
164 else if (strcmp (event, "iconify") == 0)
165 *action = ICONIFY;
166 else if (strcmp (event, "shade") == 0)
167 *action = SHADE;
168 else if (strcmp (event, "toggle_iconify") == 0)
169 *action = TOGGLE_ICONIFY;
170 else if (strcmp (event, "maximize_restore") == 0)
171 *action = MAXIMIZE_RESTORE;
172 else if (strcmp (event, "desktop_left") == 0)
173 *action = DESKTOP_LEFT;
174 else if (strcmp (event, "desktop_right") == 0)
175 *action = DESKTOP_RIGHT;
176 }
177
178
179 void add_entry (char *key, char *value)
180 {
181 char *value1=0, *value2=0, *value3=0;
182
183 /* Background and border */
184 if (strcmp (key, "rounded") == 0) {
185 // 'rounded' is the first parameter => alloc a new background
186 Area *a = calloc(1, sizeof(Area));
187 a->pix.border.rounded = atoi (value);
188 list_back = g_slist_append(list_back, a);
189 }
190 else if (strcmp (key, "border_width") == 0) {
191 Area *a = g_slist_last(list_back)->data;
192 a->pix.border.width = atoi (value);
193 }
194 else if (strcmp (key, "background_color") == 0) {
195 Area *a = g_slist_last(list_back)->data;
196 extract_values(value, &value1, &value2, &value3);
197 get_color (value1, a->pix.back.color);
198 if (value2) a->pix.back.alpha = (atoi (value2) / 100.0);
199 else a->pix.back.alpha = 0.5;
200 }
201 else if (strcmp (key, "border_color") == 0) {
202 Area *a = g_slist_last(list_back)->data;
203 extract_values(value, &value1, &value2, &value3);
204 get_color (value1, a->pix.border.color);
205 if (value2) a->pix.border.alpha = (atoi (value2) / 100.0);
206 else a->pix.border.alpha = 0.5;
207 }
208
209 /* Panel */
210 else if (strcmp (key, "panel_monitor") == 0) {
211 if (strcmp (value, "all") == 0) panel_config.monitor = -1;
212 else {
213 panel_config.monitor = atoi (value);
214 if (panel_config.monitor > 0) panel_config.monitor -= 1;
215 }
216 if (panel_config.monitor > (server.nb_monitor-1)) {
217 // server.nb_monitor minimum value is 1 (see get_monitors())
218 fprintf(stderr, "warning : monitor not found. tint2 default to all monitors.\n");
219 panel_config.monitor = 0;
220 }
221 }
222 else if (strcmp (key, "panel_size") == 0) {
223 extract_values(value, &value1, &value2, &value3);
224
225 char *b;
226 if ((b = strchr (value1, '%'))) {
227 b[0] = '\0';
228 panel_config.pourcentx = 1;
229 }
230 panel_config.area.width = atoi(value1);
231 if (panel_config.area.width == 0) {
232 // full width mode
233 panel_config.area.width = 100;
234 panel_config.pourcentx = 1;
235 }
236 if (value2) {
237 if ((b = strchr (value2, '%'))) {
238 b[0] = '\0';
239 panel_config.pourcenty = 1;
240 }
241 panel_config.area.height = atoi(value2);
242 }
243 }
244 else if (strcmp (key, "panel_margin") == 0) {
245 extract_values(value, &value1, &value2, &value3);
246 panel_config.marginx = atoi (value1);
247 if (value2) panel_config.marginy = atoi (value2);
248 }
249 else if (strcmp (key, "panel_padding") == 0) {
250 extract_values(value, &value1, &value2, &value3);
251 panel_config.area.paddingxlr = panel_config.area.paddingx = atoi (value1);
252 if (value2) panel_config.area.paddingy = atoi (value2);
253 if (value3) panel_config.area.paddingx = atoi (value3);
254 }
255 else if (strcmp (key, "panel_position") == 0) {
256 extract_values(value, &value1, &value2, &value3);
257 if (strcmp (value1, "top") == 0) panel_position = TOP;
258 else {
259 if (strcmp (value1, "bottom") == 0) panel_position = BOTTOM;
260 else panel_position = CENTER;
261 }
262
263 if (!value2) panel_position |= CENTER;
264 else {
265 if (strcmp (value2, "left") == 0) panel_position |= LEFT;
266 else {
267 if (strcmp (value2, "right") == 0) panel_position |= RIGHT;
268 else panel_position |= CENTER;
269 }
270 }
271 if (!value3) panel_horizontal = 1;
272 else {
273 if (strcmp (value3, "vertical") == 0) panel_horizontal = 0;
274 else panel_horizontal = 1;
275 }
276 }
277 else if (strcmp (key, "font_shadow") == 0)
278 panel_config.g_task.font_shadow = atoi (value);
279 else if (strcmp (key, "panel_background_id") == 0) {
280 int id = atoi (value);
281 Area *a = g_slist_nth_data(list_back, id);
282 memcpy(&panel_config.area.pix.back, &a->pix.back, sizeof(Color));
283 memcpy(&panel_config.area.pix.border, &a->pix.border, sizeof(Border));
284 }
285 else if (strcmp (key, "wm_menu") == 0)
286 wm_menu = atoi (value);
287 else if (strcmp (key, "panel_dock") == 0)
288 panel_dock = atoi (value);
289 else if (strcmp (key, "urgent_nb_of_blink") == 0)
290 max_tick_urgent = (atoi (value) * 2) + 1;
291
292 /* Battery */
293 else if (strcmp (key, "battery") == 0) {
294 #ifdef ENABLE_BATTERY
295 if(atoi(value) == 1)
296 battery_enabled = 1;
297 #else
298 if(atoi(value) == 1)
299 fprintf(stderr, "tint2 is build without battery support\n");
300 #endif
301 }
302 else if (strcmp (key, "battery_low_status") == 0) {
303 #ifdef ENABLE_BATTERY
304 battery_low_status = atoi(value);
305 if(battery_low_status < 0 || battery_low_status > 100)
306 battery_low_status = 0;
307 #endif
308 }
309 else if (strcmp (key, "battery_low_cmd") == 0) {
310 #ifdef ENABLE_BATTERY
311 if (strlen(value) > 0)
312 battery_low_cmd = strdup (value);
313 #endif
314 }
315 else if (strcmp (key, "bat1_font") == 0) {
316 #ifdef ENABLE_BATTERY
317 bat1_font_desc = pango_font_description_from_string (value);
318 #endif
319 }
320 else if (strcmp (key, "bat2_font") == 0) {
321 #ifdef ENABLE_BATTERY
322 bat2_font_desc = pango_font_description_from_string (value);
323 #endif
324 }
325 else if (strcmp (key, "battery_font_color") == 0) {
326 #ifdef ENABLE_BATTERY
327 extract_values(value, &value1, &value2, &value3);
328 get_color (value1, panel_config.battery.font.color);
329 if (value2) panel_config.battery.font.alpha = (atoi (value2) / 100.0);
330 else panel_config.battery.font.alpha = 0.5;
331 #endif
332 }
333 else if (strcmp (key, "battery_padding") == 0) {
334 #ifdef ENABLE_BATTERY
335 extract_values(value, &value1, &value2, &value3);
336 panel_config.battery.area.paddingxlr = panel_config.battery.area.paddingx = atoi (value1);
337 if (value2) panel_config.battery.area.paddingy = atoi (value2);
338 if (value3) panel_config.battery.area.paddingx = atoi (value3);
339 #endif
340 }
341 else if (strcmp (key, "battery_background_id") == 0) {
342 #ifdef ENABLE_BATTERY
343 int id = atoi (value);
344 Area *a = g_slist_nth_data(list_back, id);
345 memcpy(&panel_config.battery.area.pix.back, &a->pix.back, sizeof(Color));
346 memcpy(&panel_config.battery.area.pix.border, &a->pix.border, sizeof(Border));
347 #endif
348 }
349
350 /* Clock */
351 else if (strcmp (key, "time1_format") == 0) {
352 if (strlen(value) > 0) {
353 time1_format = strdup (value);
354 clock_enabled = 1;
355 }
356 }
357 else if (strcmp (key, "time2_format") == 0) {
358 if (strlen(value) > 0)
359 time2_format = strdup (value);
360 }
361 else if (strcmp (key, "time1_font") == 0) {
362 time1_font_desc = pango_font_description_from_string (value);
363 }
364 else if (strcmp (key, "time2_font") == 0) {
365 time2_font_desc = pango_font_description_from_string (value);
366 }
367 else if (strcmp (key, "clock_font_color") == 0) {
368 extract_values(value, &value1, &value2, &value3);
369 get_color (value1, panel_config.clock.font.color);
370 if (value2) panel_config.clock.font.alpha = (atoi (value2) / 100.0);
371 else panel_config.clock.font.alpha = 0.5;
372 }
373 else if (strcmp (key, "clock_padding") == 0) {
374 extract_values(value, &value1, &value2, &value3);
375 panel_config.clock.area.paddingxlr = panel_config.clock.area.paddingx = atoi (value1);
376 if (value2) panel_config.clock.area.paddingy = atoi (value2);
377 if (value3) panel_config.clock.area.paddingx = atoi (value3);
378 }
379 else if (strcmp (key, "clock_background_id") == 0) {
380 int id = atoi (value);
381 Area *a = g_slist_nth_data(list_back, id);
382 memcpy(&panel_config.clock.area.pix.back, &a->pix.back, sizeof(Color));
383 memcpy(&panel_config.clock.area.pix.border, &a->pix.border, sizeof(Border));
384 }
385 else if (strcmp(key, "clock_lclick_command") == 0) {
386 if (strlen(value) > 0)
387 clock_lclick_command = strdup(value);
388 }
389 else if (strcmp(key, "clock_rclick_command") == 0) {
390 if (strlen(value) > 0)
391 clock_rclick_command = strdup(value);
392 }
393
394 /* Taskbar */
395 else if (strcmp (key, "taskbar_mode") == 0) {
396 if (strcmp (value, "multi_desktop") == 0) panel_mode = MULTI_DESKTOP;
397 else panel_mode = SINGLE_DESKTOP;
398 }
399 else if (strcmp (key, "taskbar_padding") == 0) {
400 extract_values(value, &value1, &value2, &value3);
401 panel_config.g_taskbar.paddingxlr = panel_config.g_taskbar.paddingx = atoi (value1);
402 if (value2) panel_config.g_taskbar.paddingy = atoi (value2);
403 if (value3) panel_config.g_taskbar.paddingx = atoi (value3);
404 }
405 else if (strcmp (key, "taskbar_background_id") == 0) {
406 int id = atoi (value);
407 Area *a = g_slist_nth_data(list_back, id);
408 memcpy(&panel_config.g_taskbar.pix.back, &a->pix.back, sizeof(Color));
409 memcpy(&panel_config.g_taskbar.pix.border, &a->pix.border, sizeof(Border));
410 }
411 else if (strcmp (key, "taskbar_active_background_id") == 0) {
412 int id = atoi (value);
413 Area *a = g_slist_nth_data(list_back, id);
414 memcpy(&panel_config.g_taskbar.pix_active.back, &a->pix.back, sizeof(Color));
415 memcpy(&panel_config.g_taskbar.pix_active.border, &a->pix.border, sizeof(Border));
416 panel_config.g_taskbar.use_active = 1;
417 }
418
419 /* Task */
420 else if (strcmp (key, "task_text") == 0)
421 panel_config.g_task.text = atoi (value);
422 else if (strcmp (key, "task_icon") == 0)
423 panel_config.g_task.icon = atoi (value);
424 else if (strcmp (key, "task_centered") == 0)
425 panel_config.g_task.centered = atoi (value);
426 else if (strcmp (key, "task_width") == 0) {
427 // old parameter : just for backward compatibility
428 panel_config.g_task.maximum_width = atoi (value);
429 panel_config.g_task.maximum_height = 30;
430 }
431 else if (strcmp (key, "task_maximum_size") == 0) {
432 extract_values(value, &value1, &value2, &value3);
433 panel_config.g_task.maximum_width = atoi (value1);
434 panel_config.g_task.maximum_height = 30;
435 if (value2)
436 panel_config.g_task.maximum_height = atoi (value2);
437 }
438 else if (strcmp (key, "task_padding") == 0) {
439 extract_values(value, &value1, &value2, &value3);
440 panel_config.g_task.area.paddingxlr = panel_config.g_task.area.paddingx = atoi (value1);
441 if (value2) panel_config.g_task.area.paddingy = atoi (value2);
442 if (value3) panel_config.g_task.area.paddingx = atoi (value3);
443 }
444 else if (strcmp (key, "task_font") == 0) {
445 panel_config.g_task.font_desc = pango_font_description_from_string (value);
446 }
447 else if (strcmp (key, "task_font_color") == 0) {
448 extract_values(value, &value1, &value2, &value3);
449 get_color (value1, panel_config.g_task.font.color);
450 if (value2) panel_config.g_task.font.alpha = (atoi (value2) / 100.0);
451 else panel_config.g_task.font.alpha = 0.1;
452 }
453 else if (strcmp (key, "task_active_font_color") == 0) {
454 extract_values(value, &value1, &value2, &value3);
455 get_color (value1, panel_config.g_task.font_active.color);
456 if (value2) panel_config.g_task.font_active.alpha = (atoi (value2) / 100.0);
457 else panel_config.g_task.font_active.alpha = 0.1;
458 }
459 else if (strcmp (key, "task_icon_asb") == 0) {
460 extract_values(value, &value1, &value2, &value3);
461 panel_config.g_task.alpha = atoi(value1);
462 panel_config.g_task.saturation = atoi(value2);
463 panel_config.g_task.brightness = atoi(value3);
464 }
465 else if (strcmp (key, "task_active_icon_asb") == 0) {
466 extract_values(value, &value1, &value2, &value3);
467 panel_config.g_task.alpha_active = atoi(value1);
468 panel_config.g_task.saturation_active = atoi(value2);
469 panel_config.g_task.brightness_active = atoi(value3);
470 }
471 else if (strcmp (key, "task_background_id") == 0) {
472 int id = atoi (value);
473 Area *a = g_slist_nth_data(list_back, id);
474 memcpy(&panel_config.g_task.area.pix.back, &a->pix.back, sizeof(Color));
475 memcpy(&panel_config.g_task.area.pix.border, &a->pix.border, sizeof(Border));
476 }
477 else if (strcmp (key, "task_active_background_id") == 0) {
478 int id = atoi (value);
479 Area *a = g_slist_nth_data(list_back, id);
480 memcpy(&panel_config.g_task.area.pix_active.back, &a->pix.back, sizeof(Color));
481 memcpy(&panel_config.g_task.area.pix_active.border, &a->pix.border, sizeof(Border));
482 }
483
484 /* Systray */
485 else if (strcmp (key, "systray") == 0) {
486 systray_enabled = atoi(value);
487 // systray is latest option added. files without 'systray' are old.
488 old_config_file = 0;
489 }
490 else if (strcmp (key, "systray_padding") == 0) {
491 if (old_config_file)
492 systray_enabled = 1;
493 extract_values(value, &value1, &value2, &value3);
494 systray.area.paddingxlr = systray.area.paddingx = atoi (value1);
495 if (value2) systray.area.paddingy = atoi (value2);
496 if (value3) systray.area.paddingx = atoi (value3);
497 }
498 else if (strcmp (key, "systray_background_id") == 0) {
499 int id = atoi (value);
500 Area *a = g_slist_nth_data(list_back, id);
501 memcpy(&systray.area.pix.back, &a->pix.back, sizeof(Color));
502 memcpy(&systray.area.pix.border, &a->pix.border, sizeof(Border));
503 }
504 else if (strcmp(key, "systray_sort") == 0) {
505 if (strcmp(value, "descending") == 0)
506 systray.sort = -1;
507 else if (strcmp(value, "ascending") == 0)
508 systray.sort = 1;
509 else if (strcmp(value, "left2right") == 0)
510 systray.sort = 2;
511 else if (strcmp(value, "right2left") == 0)
512 systray.sort = 3;
513 }
514
515 /* Tooltip */
516 else if (strcmp (key, "tooltip") == 0)
517 g_tooltip.enabled = atoi(value);
518 else if (strcmp (key, "tooltip_show_timeout") == 0) {
519 double timeout = atof(value);
520 int sec = (int)timeout;
521 int usec = (timeout-sec)*1e6;
522 g_tooltip.show_timeout.it_value = (struct timeval){.tv_sec=sec, .tv_usec=usec};
523 }
524 else if (strcmp (key, "tooltip_hide_timeout") == 0) {
525 double timeout = atof(value);
526 int sec = (int)timeout;
527 int usec = (timeout-sec)*1e6;
528 g_tooltip.hide_timeout.it_value = (struct timeval){.tv_sec=sec, .tv_usec=usec};
529 }
530 else if (strcmp (key, "tooltip_padding") == 0) {
531 extract_values(value, &value1, &value2, &value3);
532 if (value1) g_tooltip.paddingx = atoi(value1);
533 if (value2) g_tooltip.paddingy = atoi(value2);
534 }
535 else if (strcmp (key, "tooltip_background_id") == 0) {
536 int id = atoi (value);
537 Area *a = g_slist_nth_data(list_back, id);
538 memcpy(&g_tooltip.background_color, &a->pix.back, sizeof(Color));
539 memcpy(&g_tooltip.border, &a->pix.border, sizeof(Border));
540 }
541 else if (strcmp (key, "tooltip_font_color") == 0) {
542 extract_values(value, &value1, &value2, &value3);
543 get_color(value1, g_tooltip.font_color.color);
544 if (value2) g_tooltip.font_color.alpha = (atoi (value2) / 100.0);
545 else g_tooltip.font_color.alpha = 0.1;
546 }
547 else if (strcmp (key, "tooltip_font") == 0) {
548 g_tooltip.font_desc = pango_font_description_from_string(value);
549 }
550
551 /* Mouse actions */
552 else if (strcmp (key, "mouse_middle") == 0)
553 get_action (value, &mouse_middle);
554 else if (strcmp (key, "mouse_right") == 0)
555 get_action (value, &mouse_right);
556 else if (strcmp (key, "mouse_scroll_up") == 0)
557 get_action (value, &mouse_scroll_up);
558 else if (strcmp (key, "mouse_scroll_down") == 0)
559 get_action (value, &mouse_scroll_down);
560
561
562 /* Read tint-0.6 config for backward compatibility */
563 else if (strcmp (key, "panel_mode") == 0) {
564 if (strcmp (value, "single_desktop") == 0) panel_mode = SINGLE_DESKTOP;
565 else panel_mode = MULTI_DESKTOP;
566 }
567 else if (strcmp (key, "panel_rounded") == 0) {
568 Area *a = calloc(1, sizeof(Area));
569 a->pix.border.rounded = atoi (value);
570 list_back = g_slist_append(list_back, a);
571 }
572 else if (strcmp (key, "panel_border_width") == 0) {
573 Area *a = g_slist_last(list_back)->data;
574 a->pix.border.width = atoi (value);
575 }
576 else if (strcmp (key, "panel_background_color") == 0) {
577 Area *a = g_slist_last(list_back)->data;
578 extract_values(value, &value1, &value2, &value3);
579 get_color (value1, a->pix.back.color);
580 if (value2) a->pix.back.alpha = (atoi (value2) / 100.0);
581 else a->pix.back.alpha = 0.5;
582 }
583 else if (strcmp (key, "panel_border_color") == 0) {
584 Area *a = g_slist_last(list_back)->data;
585 extract_values(value, &value1, &value2, &value3);
586 get_color (value1, a->pix.border.color);
587 if (value2) a->pix.border.alpha = (atoi (value2) / 100.0);
588 else a->pix.border.alpha = 0.5;
589 }
590 else if (strcmp (key, "task_text_centered") == 0)
591 panel_config.g_task.centered = atoi (value);
592 else if (strcmp (key, "task_margin") == 0) {
593 panel_config.g_taskbar.paddingxlr = 0;
594 panel_config.g_taskbar.paddingx = atoi (value);
595 }
596 else if (strcmp (key, "task_icon_size") == 0)
597 old_task_icon_size = atoi (value);
598 else if (strcmp (key, "task_rounded") == 0) {
599 area_task = calloc(1, sizeof(Area));
600 area_task->pix.border.rounded = atoi (value);
601 list_back = g_slist_append(list_back, area_task);
602
603 area_task_active = calloc(1, sizeof(Area));
604 area_task_active->pix.border.rounded = atoi (value);
605 list_back = g_slist_append(list_back, area_task_active);
606 }
607 else if (strcmp (key, "task_background_color") == 0) {
608 extract_values(value, &value1, &value2, &value3);
609 get_color (value1, area_task->pix.back.color);
610 if (value2) area_task->pix.back.alpha = (atoi (value2) / 100.0);
611 else area_task->pix.back.alpha = 0.5;
612 }
613 else if (strcmp (key, "task_active_background_color") == 0) {
614 extract_values(value, &value1, &value2, &value3);
615 get_color (value1, area_task_active->pix.back.color);
616 if (value2) area_task_active->pix.back.alpha = (atoi (value2) / 100.0);
617 else area_task_active->pix.back.alpha = 0.5;
618 }
619 else if (strcmp (key, "task_border_width") == 0) {
620 area_task->pix.border.width = atoi (value);
621 area_task_active->pix.border.width = atoi (value);
622 }
623 else if (strcmp (key, "task_border_color") == 0) {
624 extract_values(value, &value1, &value2, &value3);
625 get_color (value1, area_task->pix.border.color);
626 if (value2) area_task->pix.border.alpha = (atoi (value2) / 100.0);
627 else area_task->pix.border.alpha = 0.5;
628 }
629 else if (strcmp (key, "task_active_border_color") == 0) {
630 extract_values(value, &value1, &value2, &value3);
631 get_color (value1, area_task_active->pix.border.color);
632 if (value2) area_task_active->pix.border.alpha = (atoi (value2) / 100.0);
633 else area_task_active->pix.border.alpha = 0.5;
634 }
635
636 else
637 fprintf(stderr, "tint2 : invalid option \"%s\", correct your config file\n", key);
638
639 if (value1) free (value1);
640 if (value2) free (value2);
641 if (value3) free (value3);
642 }
643
644
645 int config_read ()
646 {
647 const gchar * const * system_dirs;
648 char *path1;
649 gint i;
650
651 // follow XDG specification
652 // check tint2rc in user directory
653 path1 = g_build_filename (g_get_user_config_dir(), "tint2", "tint2rc", NULL);
654 if (g_file_test (path1, G_FILE_TEST_EXISTS)) {
655 i = config_read_file (path1);
656 config_path = strdup(path1);
657 g_free(path1);
658 return i;
659 }
660 g_free(path1);
661
662 // copy tint2rc from system directory to user directory
663 char *path2 = 0;
664 system_dirs = g_get_system_config_dirs();
665 for (i = 0; system_dirs[i]; i++) {
666 path2 = g_build_filename(system_dirs[i], "tint2", "tint2rc", NULL);
667
668 if (g_file_test(path2, G_FILE_TEST_EXISTS)) break;
669 g_free (path2);
670 path2 = 0;
671 }
672
673 if (path2) {
674 // copy file in user directory (path1)
675 char *dir = g_build_filename (g_get_user_config_dir(), "tint2", NULL);
676 if (!g_file_test (dir, G_FILE_TEST_IS_DIR)) g_mkdir(dir, 0777);
677 g_free(dir);
678
679 path1 = g_build_filename (g_get_user_config_dir(), "tint2", "tint2rc", NULL);
680 copy_file(path2, path1);
681 g_free(path2);
682
683 i = config_read_file (path1);
684 config_path = strdup(path1);
685 g_free(path1);
686 return i;
687 }
688 return 0;
689 }
690
691
692 int config_read_file (const char *path)
693 {
694 FILE *fp;
695 char line[80];
696 char *key, *value;
697
698 if ((fp = fopen(path, "r")) == NULL) return 0;
699
700 while (fgets(line, sizeof(line), fp) != NULL) {
701 if (parse_line(line, &key, &value)) {
702 add_entry (key, value);
703 free (key);
704 free (value);
705 }
706 }
707 fclose (fp);
708
709 if (old_task_icon_size) {
710 panel_config.g_task.area.paddingy = ((int)panel_config.area.height - (2 * panel_config.area.paddingy) - old_task_icon_size) / 2;
711 }
712 return 1;
713 }
714
715
716
This page took 0.082838 seconds and 5 git commands to generate.