etc/Makefile.am added a sample sessiorc which will be used after user

2003-06-11  Sven Neumann  <sven@gimp.org>

	* etc/Makefile.am
	* etc/sessionrc: added a sample sessiorc which will be used after
	user installation.

	* app/gui/user-install-dialog.c (tree_items): install the sample
	sessionrc.
This commit is contained in:
Sven Neumann 2003-06-11 10:58:57 +00:00 committed by Sven Neumann
parent 3929ad278d
commit 9b20083ee9
5 changed files with 42 additions and 5 deletions

View file

@ -1,3 +1,12 @@
2003-06-11 Sven Neumann <sven@gimp.org>
* etc/Makefile.am
* etc/sessionrc: added a sample sessiorc which will be used after
user installation.
* app/gui/user-install-dialog.c (tree_items): install the sample
sessionrc.
2003-06-11 Sven Neumann <sven@gimp.org>
* app/paint-funcs/paint-funcs-generic.h (blend_pixels): fixed my

View file

@ -173,13 +173,13 @@ tree_items[] =
N_("The sessionrc is used to store what dialog windows were\n"
"open the last time you quit The GIMP. You can configure\n"
"The GIMP to reopen these dialogs at the saved position."),
TREE_ITEM_DONT, NULL
TREE_ITEM_FROM_SYSCONF_DIR, NULL
},
{
FALSE, "templaterc",
N_("This file holds a collection of standard media sizes that\n"
"serve as image templates."),
TREE_ITEM_FROM_SYSCONF_DIR, "templaterc"
TREE_ITEM_FROM_SYSCONF_DIR, NULL
},
{
FALSE, "unitrc",

View file

@ -173,13 +173,13 @@ tree_items[] =
N_("The sessionrc is used to store what dialog windows were\n"
"open the last time you quit The GIMP. You can configure\n"
"The GIMP to reopen these dialogs at the saved position."),
TREE_ITEM_DONT, NULL
TREE_ITEM_FROM_SYSCONF_DIR, NULL
},
{
FALSE, "templaterc",
N_("This file holds a collection of standard media sizes that\n"
"serve as image templates."),
TREE_ITEM_FROM_SYSCONF_DIR, "templaterc"
TREE_ITEM_FROM_SYSCONF_DIR, NULL
},
{
FALSE, "unitrc",

View file

@ -5,7 +5,8 @@ gimpsysconf_DATA = \
gtkrc_user \
templaterc \
unitrc \
ps-menurc
ps-menurc \
sessionrc
EXTRA_DIST = \
$(gimpsysconf_DATA) \

27
etc/sessionrc Normal file
View file

@ -0,0 +1,27 @@
# GIMP sessionrc
#
# This is a sample sessionrc that will be used on first startup after
# user installation.
(session-info "dock" "dock"
(position 280 28)
(size 250 440)
(open-on-exit)
(aux-info "menu-shown" "follow-active-image")
(dock
(book
"gimp-layer-list@32"
"gimp-channel-list@32"
"gimp-vectors-list@32")))
(session-info "toolbox" "dock"
(position 0 28)
(size 192 660)
(open-on-exit)
(dock
(book
"gimp-tool-options"
"gimp-brush-grid"
"gimp-gradient-list"
"gimp-pattern-grid")))
# end of sessionrc