2010-01-20 19:23:12 +00:00
# fedora-design-suite.ks
#
# Description:
# - A Spin targeted towards professional designers
#
# Maintainer:
# - Sebastian Dziallas <sdz AT fedoraproject DOT org>
2010-02-17 23:03:26 +00:00
%include fedora-live-mini.ks
2010-01-20 19:23:12 +00:00
%packages
# gnome desktop
2010-03-26 19:07:18 +00:00
gdm
2010-01-20 19:23:12 +00:00
gnome-panel
gnome-session
2011-05-08 20:35:49 +00:00
gnome-shell
2010-01-20 19:23:12 +00:00
metacity
nautilus
# graphics
blender
cinepaint
2011-05-08 20:35:49 +00:00
# entangle # does not work in a gtk+ 3 environment
2010-03-30 20:56:42 +00:00
fontforge
2010-01-20 19:23:12 +00:00
fontmatrix
2010-04-01 22:43:04 +00:00
# fyre
2010-01-20 19:23:12 +00:00
gimp
gimp-*-plugin
2010-03-30 20:56:42 +00:00
GREYCstoration-gimp
2011-05-08 20:35:49 +00:00
# hugin # is huge
2010-01-20 19:23:12 +00:00
inkscape
mypaint
nautilus-image-converter
optipng
2011-05-08 20:35:49 +00:00
# pinta # is huge because it needs mono
postr
2010-03-21 23:17:47 +00:00
rawtherapee
2010-01-20 19:23:12 +00:00
scribus
shotwell
synfigstudio
ufraw
xournal
# office
2010-03-21 23:17:47 +00:00
abiword
2010-01-20 19:23:12 +00:00
dia
2010-03-30 20:56:42 +00:00
evince
2010-01-20 19:23:12 +00:00
gnote
2010-03-21 23:17:47 +00:00
gnumeric
2011-05-08 20:35:49 +00:00
# hamster-applet # no more applets in gnome-shell
2010-01-20 19:23:12 +00:00
# pdfmod
# internet
empathy
evolution
firefox
# audio & video
2011-05-08 20:35:49 +00:00
# jokosher # no longer available
2010-01-20 19:23:12 +00:00
pitivi
rhythmbox
totem
# system
2010-03-30 20:56:42 +00:00
gedit
2011-05-08 20:35:49 +00:00
gnome-terminal
2010-01-20 19:23:12 +00:00
gnome-utils
2010-03-30 20:56:42 +00:00
gtk-recordmydesktop
2010-07-06 18:04:08 +00:00
NetworkManager-gnome
2010-01-20 19:23:12 +00:00
%end
%post
cat >> /etc/rc.d/init.d/livesys << EOF
# disable screensaver locking
2011-05-08 20:35:49 +00:00
cat >> /usr/share/glib-2.0/schemas/org.gnome.desktop.screensaver.gschema.override << FOE
[org.gnome.desktop.screensaver]
lock-enabled=false
FOE
2010-01-20 19:23:12 +00:00
2011-05-08 20:35:49 +00:00
# and hide the lock screen option
cat >> /usr/share/glib-2.0/schemas/org.gnome.desktop.lockdown.gschema.override << FOE
[org.gnome.desktop.lockdown]
disable-lock-screen=true
FOE
# disable updates plugin
cat >> /usr/share/glib-2.0/schemas/org.gnome.settings-daemon.plugins.updates.gschema.override << FOE
[org.gnome.settings-daemon.plugins.updates]
active=false
FOE
# make the installer show up
if [ -f /usr/share/applications/liveinst.desktop ]; then
# Show harddisk install in shell dash
sed -i -e 's/NoDisplay=true/NoDisplay=false/' /usr/share/applications/liveinst.desktop ""
# need to move it to anaconda.desktop to make shell happy
mv /usr/share/applications/liveinst.desktop /usr/share/applications/anaconda.desktop
cat >> /usr/share/glib-2.0/schemas/org.gnome.shell.gschema.override << FOE
[org.gnome.shell]
favorite-apps=['mozilla-firefox.desktop', 'evolution.desktop', 'empathy.desktop', 'rhythmbox.desktop', 'shotwell.desktop', 'openoffice.org-writer.desktop', 'nautilus.desktop', 'inkscape-course.desktop', 'anaconda.desktop']
2010-01-20 19:23:12 +00:00
FOE
2011-05-08 20:35:49 +00:00
# add installer to user menu
mkdir -p ~liveuser/.local/share/gnome-shell/extensions/Installer@shell-extensions.fedoraproject.org
cat >> ~liveuser/.local/share/gnome-shell/extensions/Installer@shell-extensions.fedoraproject.org/metadata.json << FOE
{"shell-version": ["2.91.91"], "uuid": "Installer@shell-extensions.fedoraproject.org", "name": "Installer", "description": "Install OS from user menu"}
FOE
cat >> ~liveuser/.local/share/gnome-shell/extensions/Installer@shell-extensions.fedoraproject.org/extension.js << FOE
const PopupMenu = imports.ui.popupMenu;
const Shell = imports.gi.Shell;
const Main = imports.ui.main;
const Util = imports.misc.util;
function main() {
let app = Shell.AppSystem.get_default().get_app('anaconda.desktop');
let item = new PopupMenu.PopupMenuItem(app.get_name());
item.connect('activate', function() { app.activate(-1); });
Main.panel._statusmenu.menu.addMenuItem(item, Main.panel._statusmenu.menu._getMenuItems().length - 1);
}
FOE
2010-01-20 19:23:12 +00:00
2011-05-08 20:35:49 +00:00
fi
# rebuild schema cache with any overrides we installed
glib-compile-schemas /usr/share/glib-2.0/schemas
# set up auto-login
cat >> /etc/gdm/custom.conf << FOE
[daemon]
AutomaticLoginEnable=True
AutomaticLogin=liveuser
FOE
2010-01-20 19:23:12 +00:00
# Turn off PackageKit-command-not-found while uninstalled
2011-05-08 20:35:49 +00:00
if [ -f /etc/PackageKit/CommandNotFound.conf ]; then
sed -i -e 's/^SoftwareSourceSearch=true/SoftwareSourceSearch=false/' /etc/PackageKit/CommandNotFound.conf
fi
2010-01-20 19:23:12 +00:00
2010-03-25 16:39:48 +00:00
# Add link to the Inkscape Course
2011-05-08 20:35:49 +00:00
cat >> /usr/share/applications/inkscape-course.desktop << FOE
2010-03-25 16:39:48 +00:00
[Desktop Entry]
Name=Introduction To Inkscape
GenericName=Inkscape Course
Comment=Materials from Máirín Duffy's Inkscape Class
2011-05-08 20:35:49 +00:00
Exec=xdg-open http://linuxgrrl.com/learn/Introduction_To_Inkscape
2010-03-25 16:39:48 +00:00
Type=Application
Icon=fedora-logo-icon
2011-05-08 20:35:49 +00:00
Categories=Graphics;Documentation;
2010-03-25 16:39:48 +00:00
FOE
2011-05-08 20:35:49 +00:00
chmod a+x /usr/share/applications/inkscape-course.desktop
2010-03-25 16:39:48 +00:00
2010-01-20 19:23:12 +00:00
EOF
%end