2010-06-07 05:02:00 +00:00
|
|
|
%include ../fedora-livecd-desktop.ks
|
2009-09-07 20:26:30 +00:00
|
|
|
|
|
|
|
%packages
|
|
|
|
gdb
|
|
|
|
strace
|
|
|
|
ltrace
|
|
|
|
libdrm
|
|
|
|
pidgin
|
|
|
|
mc
|
|
|
|
vim
|
|
|
|
nano
|
|
|
|
wget
|
|
|
|
xorg-x11-apps
|
|
|
|
gtk-recordmydesktop
|
|
|
|
gconf-editor
|
|
|
|
gimp
|
2010-02-04 15:24:01 +00:00
|
|
|
nautilus-open-terminal
|
|
|
|
abiword
|
2009-09-07 20:26:30 +00:00
|
|
|
# save some space
|
|
|
|
-empathy
|
2010-02-04 15:24:01 +00:00
|
|
|
-gnome-games
|
2009-09-07 20:26:30 +00:00
|
|
|
-brasero*
|
|
|
|
-sound-juicer
|
|
|
|
-gthumb
|
|
|
|
-gnome-backgrounds
|
|
|
|
-desktop-backgrounds*
|
|
|
|
-evolution
|
2010-02-04 15:24:01 +00:00
|
|
|
-shotwell
|
|
|
|
-planner
|
|
|
|
-openoffice*
|
|
|
|
-java*
|
2009-09-07 20:26:30 +00:00
|
|
|
# brand as fedora test spin
|
|
|
|
fedora-logos
|
|
|
|
-generic-logos
|
2011-04-09 06:09:15 +00:00
|
|
|
# glib2 is needed to set up favorites, though it probably gets pulled in anyway.
|
|
|
|
glib2
|
2009-09-07 20:26:30 +00:00
|
|
|
%end
|
|
|
|
|
|
|
|
%post
|
|
|
|
# Set Test_Day:Current as default browser homepage
|
2011-04-09 16:41:54 +00:00
|
|
|
mkdir -p /tmp/chrome/en-US/locale/branding
|
|
|
|
cat << EOF > /tmp/chrome/en-US/locale/branding/browserconfig.properties
|
2009-09-07 20:26:30 +00:00
|
|
|
browser.startup.homepage=https://fedoraproject.org/wiki/Test_Day:Current
|
2011-04-09 20:17:00 +00:00
|
|
|
startup.homepage_override_url=''
|
|
|
|
startup.homepage_welcome_url=''
|
2009-09-07 20:26:30 +00:00
|
|
|
EOF
|
2011-04-09 16:41:54 +00:00
|
|
|
(cd /tmp; zip /usr/lib/firefox-*/omni.jar chrome/en-US/locale/branding/browserconfig.properties)
|
|
|
|
rm -rf /tmp/chrome
|
2009-09-07 20:26:30 +00:00
|
|
|
|
2011-04-09 20:28:12 +00:00
|
|
|
# Create a directory to store global custom favorites
|
|
|
|
mkdir -p /usr/skel/.local/share/applications
|
|
|
|
|
2009-09-07 20:26:30 +00:00
|
|
|
# Create a .desktop link for Test Day IRC chat
|
2011-04-09 20:24:35 +00:00
|
|
|
cat << EOF > /etc/skel/.local/share/applications/testday-irc.desktop
|
2009-09-07 20:26:30 +00:00
|
|
|
[Desktop Entry]
|
|
|
|
Encoding=UTF-8
|
|
|
|
Name=Connect to a Test Day chat
|
|
|
|
Type=Link
|
|
|
|
URL=http://webchat.freenode.net/?channels=fedora-test-day
|
|
|
|
Icon=gnome-fs-bookmark
|
|
|
|
EOF
|
|
|
|
|
2011-04-09 06:09:15 +00:00
|
|
|
# Change the favorites using a vendor override. (Adding a profile would
|
|
|
|
# be another way to do this.)
|
2011-04-09 18:43:21 +00:00
|
|
|
cat << EOF > /usr/share/glib-2.0/schemas/org.gnome.shell.qa-testday.gschema.override
|
|
|
|
[org.gnome.shell]
|
2011-04-09 21:10:18 +00:00
|
|
|
favorite-apps=['mozilla-firefox.desktop', 'nautilus.desktop', 'testday-irc.desktop', 'gnome-terminal.desktop']
|
2011-04-09 06:09:15 +00:00
|
|
|
EOF
|
2011-04-09 14:52:02 +00:00
|
|
|
glib-compile-schemas /usr/share/glib-2.0/schemas/
|
2009-09-07 20:26:30 +00:00
|
|
|
%end
|