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