]>
Dogcows Code - chaz/tint2/blob - src/config.c
fd1cfcc82a2dcccd420c922a00589e6ffdc2737f
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>
47 void cleanup_taskbar()
53 nb
= panel
.nb_desktop
* panel
.nb_monitor
;
54 for (i
=0 ; i
< nb
; i
++) {
55 l0
= panel
.taskbar
[i
].area
.list
;
59 // careful : remove_task change l0->next
63 free_area (&panel
.taskbar
[i
].area
);
69 free_area(&panel
.area
);
75 if (panel
.old_task_font
) free(panel
.old_task_font
);
76 if (g_task
.font_desc
) pango_font_description_free(g_task
.font_desc
);
77 if (panel
.clock
.time1_font_desc
) pango_font_description_free(panel
.clock
.time1_font_desc
);
78 if (panel
.clock
.time2_font_desc
) pango_font_description_free(panel
.clock
.time2_font_desc
);
79 if (panel
.taskbar
) cleanup_taskbar();
80 if (panel
.clock
.time1_format
) g_free(panel
.clock
.time1_format
);
81 if (panel
.clock
.time2_format
) g_free(panel
.clock
.time2_format
);
82 if (server
.monitor
) free(server
.monitor
);
83 XCloseDisplay(server
.dsp
);
87 void copy_file(const char *pathSrc
, const char *pathDest
)
89 FILE *fileSrc
, *fileDest
;
93 fileSrc
= fopen(pathSrc
, "rb");
94 if (fileSrc
== NULL
) return;
96 fileDest
= fopen(pathDest
, "wb");
97 if (fileDest
== NULL
) return;
99 while ((nb
= fread(line
, 1, 100, fileSrc
)) > 0) fwrite(line
, 1, nb
, fileDest
);
106 void extract_values (const char *value
, char **value1
, char **value2
, char **value3
)
110 if (*value1
) free (*value1
);
111 if (*value2
) free (*value2
);
112 if (*value3
) free (*value3
);
114 if ((b
= strchr (value
, ' '))) {
122 *value1
= strdup (value
);
126 if ((c
= strchr (b
, ' '))) {
134 *value2
= strdup (b
);
139 *value3
= strdup (c
);
145 int hex_char_to_int (char c
)
149 if (c
>= '0' && c
<= '9') r
= c
- '0';
150 else if (c
>= 'a' && c
<= 'f') r
= c
- 'a' + 10;
151 else if (c
>= 'A' && c
<= 'F') r
= c
- 'A' + 10;
158 int hex_to_rgb (char *hex
, int *r
, int *g
, int *b
)
162 if (hex
== NULL
|| hex
[0] != '#') return (0);
166 *r
= hex_char_to_int (hex
[1]);
167 *g
= hex_char_to_int (hex
[2]);
168 *b
= hex_char_to_int (hex
[3]);
170 else if (len
== 6 + 1) {
171 *r
= hex_char_to_int (hex
[1]) * 16 + hex_char_to_int (hex
[2]);
172 *g
= hex_char_to_int (hex
[3]) * 16 + hex_char_to_int (hex
[4]);
173 *b
= hex_char_to_int (hex
[5]) * 16 + hex_char_to_int (hex
[6]);
175 else if (len
== 12 + 1) {
176 *r
= hex_char_to_int (hex
[1]) * 16 + hex_char_to_int (hex
[2]);
177 *g
= hex_char_to_int (hex
[5]) * 16 + hex_char_to_int (hex
[6]);
178 *b
= hex_char_to_int (hex
[9]) * 16 + hex_char_to_int (hex
[10]);
186 void get_color (char *hex
, double *rgb
)
189 hex_to_rgb (hex
, &r
, &g
, &b
);
191 rgb
[0] = (r
/ 255.0);
192 rgb
[1] = (g
/ 255.0);
193 rgb
[2] = (b
/ 255.0);
197 void get_action (char *event
, int *action
)
199 if (strcmp (event
, "none") == 0)
201 else if (strcmp (event
, "close") == 0)
203 else if (strcmp (event
, "toggle") == 0)
205 else if (strcmp (event
, "iconify") == 0)
207 else if (strcmp (event
, "shade") == 0)
209 else if (strcmp (event
, "toggle_iconify") == 0)
210 *action
= TOGGLE_ICONIFY
;
214 void add_entry (char *key
, char *value
)
216 char *value1
=0, *value2
=0, *value3
=0;
218 /* Background and border */
219 if (strcmp (key
, "rounded") == 0) {
220 // 'rounded' is the first parameter => alloc a new background
221 Area
*a
= calloc(1, sizeof(Area
));
222 a
->pix
.border
.rounded
= atoi (value
);
223 list_back
= g_slist_append(list_back
, a
);
225 else if (strcmp (key
, "border_width") == 0) {
226 Area
*a
= g_slist_last(list_back
)->data
;
227 a
->pix
.border
.width
= atoi (value
);
229 else if (strcmp (key
, "background_color") == 0) {
230 Area
*a
= g_slist_last(list_back
)->data
;
231 extract_values(value
, &value1
, &value2
, &value3
);
232 get_color (value1
, a
->pix
.back
.color
);
233 if (value2
) a
->pix
.back
.alpha
= (atoi (value2
) / 100.0);
234 else a
->pix
.back
.alpha
= 0.5;
236 else if (strcmp (key
, "border_color") == 0) {
237 Area
*a
= g_slist_last(list_back
)->data
;
238 extract_values(value
, &value1
, &value2
, &value3
);
239 get_color (value1
, a
->pix
.border
.color
);
240 if (value2
) a
->pix
.border
.alpha
= (atoi (value2
) / 100.0);
241 else a
->pix
.border
.alpha
= 0.5;
245 else if (strcmp (key
, "panel_monitor") == 0) {
246 panel
.monitor
= atoi (value
);
247 if (panel
.monitor
> 0) panel
.monitor
-= 1;
249 else if (strcmp (key
, "panel_size") == 0) {
250 extract_values(value
, &value1
, &value2
, &value3
);
251 panel
.area
.width
= atoi (value1
);
252 if (value2
) panel
.area
.height
= atoi (value2
);
254 else if (strcmp (key
, "panel_margin") == 0) {
255 extract_values(value
, &value1
, &value2
, &value3
);
256 panel
.marginleft
= panel
.marginright
= atoi (value1
);
257 if (value2
) panel
.marginy
= atoi (value2
);
258 if (value3
) panel
.marginright
= atoi (value3
);
260 else if (strcmp (key
, "panel_padding") == 0) {
261 extract_values(value
, &value1
, &value2
, &value3
);
262 panel
.area
.paddingxlr
= panel
.area
.paddingx
= atoi (value1
);
263 if (value2
) panel
.area
.paddingy
= atoi (value2
);
264 if (value3
) panel
.area
.paddingx
= atoi (value3
);
266 else if (strcmp (key
, "panel_position") == 0) {
267 extract_values(value
, &value1
, &value2
, &value3
);
268 if (strcmp (value1
, "top") == 0) panel
.position
= TOP
;
269 else panel
.position
= BOTTOM
;
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
;
280 else if (strcmp (key
, "font_shadow") == 0)
281 g_task
.font_shadow
= atoi (value
);
282 else if (strcmp (key
, "panel_background_id") == 0) {
283 int id
= atoi (value
);
284 Area
*a
= g_slist_nth_data(list_back
, id
);
285 memcpy(&panel
.area
.pix
.back
, &a
->pix
.back
, sizeof(Color
));
286 memcpy(&panel
.area
.pix
.border
, &a
->pix
.border
, sizeof(Border
));
290 else if (strcmp (key
, "time1_format") == 0) {
291 if (panel
.clock
.time1_format
) g_free(panel
.clock
.time1_format
);
292 if (strlen(value
) > 0) panel
.clock
.time1_format
= strdup (value
);
293 else panel
.clock
.time1_format
= 0;
295 else if (strcmp (key
, "time2_format") == 0) {
296 if (panel
.clock
.time2_format
) g_free(panel
.clock
.time2_format
);
297 if (strlen(value
) > 0) panel
.clock
.time2_format
= strdup (value
);
298 else panel
.clock
.time2_format
= 0;
300 else if (strcmp (key
, "time1_font") == 0) {
301 if (panel
.clock
.time1_font_desc
) pango_font_description_free(panel
.clock
.time1_font_desc
);
302 panel
.clock
.time1_font_desc
= pango_font_description_from_string (value
);
304 else if (strcmp (key
, "time2_font") == 0) {
305 if (panel
.clock
.time2_font_desc
) pango_font_description_free(panel
.clock
.time2_font_desc
);
306 panel
.clock
.time2_font_desc
= pango_font_description_from_string (value
);
308 else if (strcmp (key
, "clock_font_color") == 0) {
309 extract_values(value
, &value1
, &value2
, &value3
);
310 get_color (value1
, panel
.clock
.font
.color
);
311 if (value2
) panel
.clock
.font
.alpha
= (atoi (value2
) / 100.0);
312 else panel
.clock
.font
.alpha
= 0.1;
314 else if (strcmp (key
, "clock_padding") == 0) {
315 extract_values(value
, &value1
, &value2
, &value3
);
316 panel
.clock
.area
.paddingxlr
= panel
.clock
.area
.paddingx
= atoi (value1
);
317 if (value2
) panel
.clock
.area
.paddingy
= atoi (value2
);
318 if (value3
) panel
.clock
.area
.paddingx
= atoi (value3
);
320 else if (strcmp (key
, "clock_background_id") == 0) {
321 int id
= atoi (value
);
322 Area
*a
= g_slist_nth_data(list_back
, id
);
323 memcpy(&panel
.clock
.area
.pix
.back
, &a
->pix
.back
, sizeof(Color
));
324 memcpy(&panel
.clock
.area
.pix
.border
, &a
->pix
.border
, sizeof(Border
));
328 else if (strcmp (key
, "taskbar_mode") == 0) {
329 if (strcmp (value
, "multi_desktop") == 0) panel
.mode
= MULTI_DESKTOP
;
330 else if (strcmp (value
, "multi_monitor") == 0) panel
.mode
= MULTI_MONITOR
;
331 else panel
.mode
= SINGLE_DESKTOP
;
333 else if (strcmp (key
, "taskbar_padding") == 0) {
334 extract_values(value
, &value1
, &value2
, &value3
);
335 g_taskbar
.paddingxlr
= g_taskbar
.paddingx
= atoi (value1
);
336 if (value2
) g_taskbar
.paddingy
= atoi (value2
);
337 if (value3
) g_taskbar
.paddingx
= atoi (value3
);
339 else if (strcmp (key
, "taskbar_background_id") == 0) {
340 int id
= atoi (value
);
341 Area
*a
= g_slist_nth_data(list_back
, id
);
342 memcpy(&g_taskbar
.pix
.back
, &a
->pix
.back
, sizeof(Color
));
343 memcpy(&g_taskbar
.pix
.border
, &a
->pix
.border
, sizeof(Border
));
347 else if (strcmp (key
, "task_text") == 0)
348 g_task
.text
= atoi (value
);
349 else if (strcmp (key
, "task_icon") == 0)
350 g_task
.icon
= atoi (value
);
351 else if (strcmp (key
, "task_centered") == 0)
352 g_task
.centered
= atoi (value
);
353 else if (strcmp (key
, "task_width") == 0)
354 g_task
.maximum_width
= atoi (value
);
355 else if (strcmp (key
, "task_padding") == 0) {
356 extract_values(value
, &value1
, &value2
, &value3
);
357 g_task
.area
.paddingxlr
= g_task
.area
.paddingx
= atoi (value1
);
358 if (value2
) g_task
.area
.paddingy
= atoi (value2
);
359 if (value3
) g_task
.area
.paddingx
= atoi (value3
);
361 else if (strcmp (key
, "task_font") == 0) {
362 if (g_task
.font_desc
) pango_font_description_free(g_task
.font_desc
);
363 g_task
.font_desc
= pango_font_description_from_string (value
);
365 else if (strcmp (key
, "task_font_color") == 0) {
366 extract_values(value
, &value1
, &value2
, &value3
);
367 get_color (value1
, g_task
.font
.color
);
368 if (value2
) g_task
.font
.alpha
= (atoi (value2
) / 100.0);
369 else g_task
.font
.alpha
= 0.1;
371 else if (strcmp (key
, "task_active_font_color") == 0) {
372 extract_values(value
, &value1
, &value2
, &value3
);
373 get_color (value1
, g_task
.font_active
.color
);
374 if (value2
) g_task
.font_active
.alpha
= (atoi (value2
) / 100.0);
375 else g_task
.font_active
.alpha
= 0.1;
377 else if (strcmp (key
, "task_background_id") == 0) {
378 int id
= atoi (value
);
379 Area
*a
= g_slist_nth_data(list_back
, id
);
380 memcpy(&g_task
.area
.pix
.back
, &a
->pix
.back
, sizeof(Color
));
381 memcpy(&g_task
.area
.pix
.border
, &a
->pix
.border
, sizeof(Border
));
383 else if (strcmp (key
, "task_active_background_id") == 0) {
384 int id
= atoi (value
);
385 Area
*a
= g_slist_nth_data(list_back
, id
);
386 memcpy(&g_task
.area
.pix_active
.back
, &a
->pix
.back
, sizeof(Color
));
387 memcpy(&g_task
.area
.pix_active
.border
, &a
->pix
.border
, sizeof(Border
));
391 else if (strcmp (key
, "mouse_middle") == 0)
392 get_action (value
, &panel
.mouse_middle
);
393 else if (strcmp (key
, "mouse_right") == 0)
394 get_action (value
, &panel
.mouse_right
);
395 else if (strcmp (key
, "mouse_scroll_up") == 0)
396 get_action (value
, &panel
.mouse_scroll_up
);
397 else if (strcmp (key
, "mouse_scroll_down") == 0)
398 get_action (value
, &panel
.mouse_scroll_down
);
401 /* Read old config for backward compatibility */
402 else if (strcmp (key
, "font") == 0) {
403 panel
.old_config_file
= 1;
404 if (g_task
.font_desc
) pango_font_description_free(g_task
.font_desc
);
405 g_task
.font_desc
= pango_font_description_from_string (value
);
406 if (panel
.old_task_font
) free(panel
.old_task_font
);
407 panel
.old_task_font
= strdup (value
);
409 else if (strcmp (key
, "font_color") == 0)
410 get_color (value
, g_task
.font
.color
);
411 else if (strcmp (key
, "font_alpha") == 0)
412 g_task
.font
.alpha
= (atoi (value
) / 100.0);
413 else if (strcmp (key
, "font_active_color") == 0)
414 get_color (value
, g_task
.font_active
.color
);
415 else if (strcmp (key
, "font_active_alpha") == 0)
416 g_task
.font_active
.alpha
= (atoi (value
) / 100.0);
417 else if (strcmp (key
, "panel_show_all_desktop") == 0) {
418 if (atoi (value
) == 0) panel
.mode
= SINGLE_DESKTOP
;
419 else panel
.mode
= MULTI_DESKTOP
;
421 else if (strcmp (key
, "panel_width") == 0)
422 panel
.area
.width
= atoi (value
);
423 else if (strcmp (key
, "panel_height") == 0)
424 panel
.area
.height
= atoi (value
);
425 else if (strcmp (key
, "panel_background") == 0)
426 panel
.old_panel_background
= atoi (value
);
427 else if (strcmp (key
, "panel_background_alpha") == 0)
428 panel
.area
.pix
.back
.alpha
= (atoi (value
) / 100.0);
429 else if (strcmp (key
, "panel_border_alpha") == 0)
430 panel
.area
.pix
.border
.alpha
= (atoi (value
) / 100.0);
431 else if (strcmp (key
, "task_icon") == 0)
432 panel
.old_task_icon
= atoi (value
);
433 else if (strcmp (key
, "task_background") == 0)
434 panel
.old_task_background
= atoi (value
);
435 else if (strcmp (key
, "task_background_alpha") == 0)
436 g_task
.area
.pix
.back
.alpha
= (atoi (value
) / 100.0);
437 else if (strcmp (key
, "task_active_background_alpha") == 0)
438 g_task
.area
.pix_active
.back
.alpha
= (atoi (value
) / 100.0);
439 else if (strcmp (key
, "task_border_alpha") == 0)
440 g_task
.area
.pix
.border
.alpha
= (atoi (value
) / 100.0);
441 else if (strcmp (key
, "task_active_border_alpha") == 0)
442 g_task
.area
.pix_active
.border
.alpha
= (atoi (value
) / 100.0);
443 // disabled parameters
444 else if (strcmp (key
, "task_active_border_width") == 0) ;
445 else if (strcmp (key
, "task_active_rounded") == 0) ;
448 fprintf(stderr
, "Invalid option: \"%s\", correct your config file\n", key
);
450 if (value1
) free (value1
);
451 if (value2
) free (value2
);
452 if (value3
) free (value3
);
456 int parse_line (const char *line
)
458 char *a
, *b
, *key
, *value
;
460 /* Skip useless lines */
461 if ((line
[0] == '#') || (line
[0] == '\n')) return 0;
462 if (!(a
= strchr (line
, '='))) return 0;
464 /* overwrite '=' with '\0' */
469 /* overwrite '\n' with '\0' if '\n' present */
470 if ((b
= strchr (a
, '\n'))) b
[0] = '\0';
477 add_entry (key
, value
);
485 void config_taskbar()
489 if (g_task
.area
.pix
.border
.rounded
> g_task
.area
.height
/2) {
490 g_task
.area
.pix
.border
.rounded
= g_task
.area
.height
/2;
491 g_task
.area
.pix_active
.border
.rounded
= g_task
.area
.pix
.border
.rounded
;
494 for (i
=0 ; i
< 15 ; i
++) {
495 server
.nb_desktop
= server_get_number_of_desktop ();
496 if (server
.nb_desktop
> 0) break;
499 if (server
.nb_desktop
== 0) {
500 server
.nb_desktop
= 1;
501 fprintf(stderr
, "tint2 warning : cannot found number of desktop.\n");
504 if (panel
.taskbar
) cleanup_taskbar();
506 panel
.nb_desktop
= server
.nb_desktop
;
507 if (panel
.mode
== MULTI_MONITOR
) panel
.nb_monitor
= server
.nb_monitor
;
508 else panel
.nb_monitor
= 1;
509 panel
.taskbar
= calloc(panel
.nb_desktop
* panel
.nb_monitor
, sizeof(Taskbar
));
510 g_slist_free(panel
.area
.list
);
514 for (i
=0 ; i
< panel
.nb_desktop
; i
++) {
515 for (j
=0 ; j
< panel
.nb_monitor
; j
++) {
516 tskbar
= &panel
.taskbar
[index(i
,j
)];
517 memcpy(&tskbar
->area
, &g_taskbar
, sizeof(Area
));
521 // TODO: redefinir panel.area.list en fonction des objets visibles
522 panel
.area
.list
= g_slist_append(panel
.area
.list
, tskbar
);
525 if (panel
.clock
.time1_format
)
526 panel
.area
.list
= g_slist_append(panel
.area
.list
, &panel
.clock
);
528 //printf("taskbar (desktop x monitor) : (%d x %d)\n", panel.nb_desktop, panel.nb_monitor);
530 task_refresh_tasklist ();
535 void config_finish ()
537 int height_ink
, height
;
539 if (panel
.old_config_file
) save_config();
541 // get monitor's configuration
544 if (panel
.monitor
> (server
.nb_monitor
-1)) {
545 panel
.sleep_mode
= 1;
546 fprintf(stderr
, "tint2 sleep and wait monitor %d.\n", panel
.monitor
+1);
549 panel
.sleep_mode
= 0;
550 //printf("tint2 wake up on monitor %d\n", panel.monitor+1);
551 if (!server
.monitor
[panel
.monitor
].width
|| !server
.monitor
[panel
.monitor
].height
)
552 fprintf(stderr
, "tint2 error : invalid monitor size.\n");
555 if (!panel
.area
.width
) panel
.area
.width
= server
.monitor
[panel
.monitor
].width
- 1 - panel
.marginleft
- panel
.marginright
;
558 g_taskbar
.posy
= panel
.area
.pix
.border
.width
+ panel
.area
.paddingy
;
559 g_taskbar
.height
= panel
.area
.height
- (2 * g_taskbar
.posy
);
560 g_taskbar
.redraw
= 1;
563 g_task
.area
.posy
= g_taskbar
.posy
+ g_taskbar
.pix
.border
.width
+ g_taskbar
.paddingy
;
564 g_task
.area
.height
= panel
.area
.height
- (2 * g_task
.area
.posy
);
565 g_task
.area
.use_active
= 1;
566 g_task
.area
.redraw
= 1;
568 if (!g_task
.maximum_width
)
569 g_task
.maximum_width
= server
.monitor
[panel
.monitor
].width
;
571 if (panel
.area
.pix
.border
.rounded
> panel
.area
.height
/2)
572 panel
.area
.pix
.border
.rounded
= panel
.area
.height
/2;
575 init_clock(&panel
.clock
, panel
.area
.height
);
577 // compute vertical position : text and icon
578 get_text_size(g_task
.font_desc
, &height_ink
, &height
, panel
.area
.height
, "TAjpg", 5);
579 g_task
.text_posy
= (g_task
.area
.height
- height
) / 2.0;
581 // add task_icon_size
582 g_task
.text_posx
= g_task
.area
.paddingxlr
+ g_task
.area
.pix
.border
.width
;
584 g_task
.icon_size1
= g_task
.area
.height
- (2 * g_task
.area
.paddingy
);
585 g_task
.text_posx
+= g_task
.icon_size1
;
586 g_task
.icon_posy
= (g_task
.area
.height
- g_task
.icon_size1
) / 2;
592 // cleanup background list
594 for (l0
= list_back
; l0
; l0
= l0
->next
) {
597 g_slist_free(list_back
);
604 const gchar
* const * system_dirs
;
605 char *path1
, *path2
, *dir
;
608 // check tint2rc file according to XDG specification
609 path1
= g_build_filename (g_get_user_config_dir(), "tint2", "tint2rc", NULL
);
610 if (!g_file_test (path1
, G_FILE_TEST_EXISTS
)) {
613 system_dirs
= g_get_system_config_dirs();
614 for (i
= 0; system_dirs
[i
]; i
++) {
615 path2
= g_build_filename(system_dirs
[i
], "tint2", "tint2rc", NULL
);
617 if (g_file_test(path2
, G_FILE_TEST_EXISTS
)) break;
623 // copy file in user directory (path1)
624 dir
= g_build_filename (g_get_user_config_dir(), "tint2", NULL
);
625 if (!g_file_test (dir
, G_FILE_TEST_IS_DIR
)) g_mkdir(dir
, 0777);
628 copy_file(path2
, path1
);
633 i
= config_read_file (path1
);
639 int config_read_file (const char *path
)
644 if ((fp
= fopen(path
, "r")) == NULL
) return 0;
646 while (fgets(line
, sizeof(line
), fp
) != NULL
)
656 fprintf(stderr
, "tint2 warning : convert user's config file\n");
657 panel
.area
.paddingx
= panel
.area
.paddingy
= panel
.marginleft
;
658 panel
.marginleft
= panel
.marginright
= panel
.marginy
= 0;
660 if (panel
.old_task_icon
== 0) g_task
.icon_size1
= 0;
661 if (panel
.old_panel_background
== 0) panel
.area
.pix
.back
.alpha
= 0;
662 if (panel
.old_task_background
== 0) {
663 g_task
.area
.pix
.back
.alpha
= 0;
664 g_task
.area
.pix_active
.back
.alpha
= 0;
666 g_task
.area
.pix
.border
.rounded
= g_task
.area
.pix
.border
.rounded
/ 2;
667 g_task
.area
.pix_active
.border
.rounded
= g_task
.area
.pix
.border
.rounded
;
668 panel
.area
.pix
.border
.rounded
= panel
.area
.pix
.border
.rounded
/ 2;
673 path
= g_build_filename (g_get_user_config_dir(), "tint2", "tint2rc", NULL
);
674 fp
= fopen(path
, "w");
676 if (fp
== NULL
) return;
678 fputs("#---------------------------------------------\n", fp
);
679 fputs("# TINT CONFIG FILE\n", fp
);
680 fputs("#---------------------------------------------\n\n", fp
);
681 fputs("#---------------------------------------------\n", fp
);
682 fputs("# PANEL\n", fp
);
683 fputs("#---------------------------------------------\n", fp
);
684 if (panel
.mode
== SINGLE_DESKTOP
) fputs("panel_mode = single_desktop\n", fp
);
685 else fputs("panel_mode = multi_desktop\n", fp
);
686 fputs("panel_monitor = 1\n", fp
);
687 if (panel
.position
& BOTTOM
) fputs("panel_position = bottom", fp
);
688 else fputs("panel_position = top", fp
);
689 if (panel
.position
& LEFT
) fputs(" left\n", fp
);
690 else if (panel
.position
& RIGHT
) fputs(" right\n", fp
);
691 else fputs(" center\n", fp
);
692 fprintf(fp
, "panel_size = %d %d\n", panel
.area
.width
, panel
.area
.height
);
693 fprintf(fp
, "panel_margin = %d %d\n", panel
.marginleft
, panel
.marginy
);
694 fprintf(fp
, "panel_padding = %d %d\n", panel
.area
.paddingx
, panel
.area
.paddingy
);
695 fprintf(fp
, "font_shadow = %d\n", g_task
.font_shadow
);
697 fputs("\n#---------------------------------------------\n", fp
);
698 fputs("# PANEL BACKGROUND AND BORDER\n", fp
);
699 fputs("#---------------------------------------------\n", fp
);
700 fprintf(fp
, "panel_rounded = %d\n", panel
.area
.pix
.border
.rounded
);
701 fprintf(fp
, "panel_border_width = %d\n", panel
.area
.pix
.border
.width
);
702 fprintf(fp
, "panel_background_color = #%02x%02x%02x %d\n", (int)(panel
.area
.pix
.back
.color
[0]*255), (int)(panel
.area
.pix
.back
.color
[1]*255), (int)(panel
.area
.pix
.back
.color
[2]*255), (int)(panel
.area
.pix
.back
.alpha
*100));
703 fprintf(fp
, "panel_border_color = #%02x%02x%02x %d\n", (int)(panel
.area
.pix
.border
.color
[0]*255), (int)(panel
.area
.pix
.border
.color
[1]*255), (int)(panel
.area
.pix
.border
.color
[2]*255), (int)(panel
.area
.pix
.border
.alpha
*100));
705 fputs("\n#---------------------------------------------\n", fp
);
706 fputs("# TASKS\n", fp
);
707 fputs("#---------------------------------------------\n", fp
);
708 fprintf(fp
, "task_centered = %d\n", g_task
.centered
);
709 fprintf(fp
, "task_width = %d\n", g_task
.maximum_width
);
710 fprintf(fp
, "task_padding = %d\n", g_task
.area
.paddingx
);
711 fprintf(fp
, "task_icon = %d\n", g_task
.icon
);
712 fprintf(fp
, "task_font = %s\n", panel
.old_task_font
);
713 fprintf(fp
, "task_font_color = #%02x%02x%02x %d\n", (int)(g_task
.font
.color
[0]*255), (int)(g_task
.font
.color
[1]*255), (int)(g_task
.font
.color
[2]*255), (int)(g_task
.font
.alpha
*100));
714 fprintf(fp
, "task_active_font_color = #%02x%02x%02x %d\n", (int)(g_task
.font_active
.color
[0]*255), (int)(g_task
.font_active
.color
[1]*255), (int)(g_task
.font_active
.color
[2]*255), (int)(g_task
.font_active
.alpha
*100));
716 fputs("\n#---------------------------------------------\n", fp
);
717 fputs("# TASK BACKGROUND AND BORDER\n", fp
);
718 fputs("#---------------------------------------------\n", fp
);
719 fprintf(fp
, "task_rounded = %d\n", g_task
.area
.pix
.border
.rounded
);
720 fprintf(fp
, "task_background_color = #%02x%02x%02x %d\n", (int)(g_task
.area
.pix
.back
.color
[0]*255), (int)(g_task
.area
.pix
.back
.color
[1]*255), (int)(g_task
.area
.pix
.back
.color
[2]*255), (int)(g_task
.area
.pix
.back
.alpha
*100));
721 fprintf(fp
, "task_active_background_color = #%02x%02x%02x %d\n", (int)(g_task
.area
.pix_active
.back
.color
[0]*255), (int)(g_task
.area
.pix_active
.back
.color
[1]*255), (int)(g_task
.area
.pix_active
.back
.color
[2]*255), (int)(g_task
.area
.pix_active
.back
.alpha
*100));
722 fprintf(fp
, "task_border_width = %d\n", g_task
.area
.pix
.border
.width
);
723 fprintf(fp
, "task_border_color = #%02x%02x%02x %d\n", (int)(g_task
.area
.pix
.border
.color
[0]*255), (int)(g_task
.area
.pix
.border
.color
[1]*255), (int)(g_task
.area
.pix
.border
.color
[2]*255), (int)(g_task
.area
.pix
.border
.alpha
*100));
724 fprintf(fp
, "task_active_border_color = #%02x%02x%02x %d\n", (int)(g_task
.area
.pix_active
.border
.color
[0]*255), (int)(g_task
.area
.pix_active
.border
.color
[1]*255), (int)(g_task
.area
.pix_active
.border
.color
[2]*255), (int)(g_task
.area
.pix_active
.border
.alpha
*100));
726 fputs("\n#---------------------------------------------\n", fp
);
727 fputs("# CLOCK\n", fp
);
728 fputs("#---------------------------------------------\n", fp
);
729 fputs("#time1_format = %H:%M\n", fp
);
730 fputs("time1_font = sans bold 8\n", fp
);
731 fputs("#time2_format = %A %d %B\n", fp
);
732 fputs("time2_font = sans 6\n", fp
);
733 fputs("clock_font_color = #ffffff 75\n", fp
);
735 fputs("\n#---------------------------------------------\n", fp
);
736 fputs("# MOUSE ACTION ON TASK\n", fp
);
737 fputs("#---------------------------------------------\n", fp
);
738 if (panel
.mouse_middle
== NONE
) fputs("mouse_middle = none\n", fp
);
739 else if (panel
.mouse_middle
== CLOSE
) fputs("mouse_middle = close\n", fp
);
740 else if (panel
.mouse_middle
== TOGGLE
) fputs("mouse_middle = toggle\n", fp
);
741 else if (panel
.mouse_middle
== ICONIFY
) fputs("mouse_middle = iconify\n", fp
);
742 else if (panel
.mouse_middle
== SHADE
) fputs("mouse_middle = shade\n", fp
);
743 else fputs("mouse_middle = toggle_iconify\n", fp
);
745 if (panel
.mouse_right
== NONE
) fputs("mouse_right = none\n", fp
);
746 else if (panel
.mouse_right
== CLOSE
) fputs("mouse_right = close\n", fp
);
747 else if (panel
.mouse_right
== TOGGLE
) fputs("mouse_right = toggle\n", fp
);
748 else if (panel
.mouse_right
== ICONIFY
) fputs("mouse_right = iconify\n", fp
);
749 else if (panel
.mouse_right
== SHADE
) fputs("mouse_right = shade\n", fp
);
750 else fputs("mouse_right = toggle_iconify\n", fp
);
752 if (panel
.mouse_scroll_up
== NONE
) fputs("mouse_scroll_up = none\n", fp
);
753 else if (panel
.mouse_scroll_up
== CLOSE
) fputs("mouse_scroll_up = close\n", fp
);
754 else if (panel
.mouse_scroll_up
== TOGGLE
) fputs("mouse_scroll_up = toggle\n", fp
);
755 else if (panel
.mouse_scroll_up
== ICONIFY
) fputs("mouse_scroll_up = iconify\n", fp
);
756 else if (panel
.mouse_scroll_up
== SHADE
) fputs("mouse_scroll_up = shade\n", fp
);
757 else fputs("mouse_scroll_up = toggle_iconify\n", fp
);
759 if (panel
.mouse_scroll_down
== NONE
) fputs("mouse_scroll_down = none\n", fp
);
760 else if (panel
.mouse_scroll_down
== CLOSE
) fputs("mouse_scroll_down = close\n", fp
);
761 else if (panel
.mouse_scroll_down
== TOGGLE
) fputs("mouse_scroll_down = toggle\n", fp
);
762 else if (panel
.mouse_scroll_down
== ICONIFY
) fputs("mouse_scroll_down = iconify\n", fp
);
763 else if (panel
.mouse_scroll_down
== SHADE
) fputs("mouse_scroll_down = shade\n", fp
);
764 else fputs("mouse_scroll_down = toggle_iconify\n", fp
);
769 panel
.old_config_file
= 0;
This page took 0.076968 seconds and 3 git commands to generate.