X-Git-Url: https://git.dogcows.com/gitweb?a=blobdiff_plain;f=openbox%2Fdock.c;h=fe9a0f507eba33d255eff0f7f41228b93fc601af;hb=be79af11f68f2302023c0604a7662af74b2f423d;hp=85dbc360f85aea466945142f25a3c9a649f64da2;hpb=c73bd381fe7d4bc601ca1f8ecdb1b8bbf074aa18;p=chaz%2Fopenbox diff --git a/openbox/dock.c b/openbox/dock.c index 85dbc360..fe9a0f50 100644 --- a/openbox/dock.c +++ b/openbox/dock.c @@ -1,3 +1,21 @@ +/* -*- indent-tabs-mode: nil; tab-width: 4; c-basic-offset: 4; -*- + + dock.c for the Openbox window manager + Copyright (c) 2003 Ben Jansens + + This program is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; either version 2 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + See the COPYING file for a copy of the GNU General Public License. +*/ + #include "debug.h" #include "dock.h" #include "mainloop.h" @@ -21,7 +39,15 @@ void dock_startup(gboolean reconfig) XSetWindowAttributes attrib; if (reconfig) { + XSetWindowBorder(ob_display, dock->frame, + RrColorPixel(ob_rr_theme->b_color)); + XSetWindowBorderWidth(ob_display, dock->frame, ob_rr_theme->bwidth); + + RrAppearanceFree(dock->a_frame); + dock->a_frame = RrAppearanceCopy(ob_rr_theme->a_unfocused_title); + stacking_add(DOCK_AS_WINDOW(dock)); + dock_configure(); return; }