fedora-kickstarts/fedora-live-design_suite.ks

132 lines
2.6 KiB
Plaintext
Raw Normal View History

2013-01-29 22:13:15 +00:00
# fedora-design-suite.ks
# Based on Live Desktop
# Description:
# - A Spin targeted towards professional designers
# Website: http://fedoraproject.org/wiki/Design_Suite
# Maintainers:
2013-11-17 19:46:37 +00:00
# - Luya Tshimbalanga <luya AT fedoraproject DOT org>
# - Previous maintainer Sebastian Dziallas
2013-01-29 22:13:15 +00:00
%include fedora-live-desktop.ks
2013-01-29 22:13:15 +00:00
#DVD size partition
part / --size 8192
2013-01-29 22:13:15 +00:00
%packages
# graphics
blender
# add blender plugins
LuxRender-blender
YafaRay-blender
2013-05-16 19:27:42 +00:00
bluefish
#cinepaint
2013-01-29 22:13:15 +00:00
cmyktool
2013-05-16 19:27:42 +00:00
darktable
2013-01-29 22:13:15 +00:00
dia
entangle
fontforge
2013-05-16 19:27:42 +00:00
font-manager
2013-01-29 22:13:15 +00:00
gimp
2014-08-23 18:13:15 +00:00
gimp-elsamuko
2013-01-29 22:13:15 +00:00
gimp-*-plugin
gimp-data-extras
2013-11-17 19:46:37 +00:00
gimp-gap
gimp-paint-studio
gimp-high-pass-filter
gimp-normalmap
gimp-resynthesizer
2013-12-02 01:28:14 +00:00
gimp-separate+
2013-04-20 20:02:22 +00:00
gpick
2014-08-23 18:13:15 +00:00
gmic-gimp
2013-05-16 19:27:42 +00:00
hugin
2013-01-29 22:13:15 +00:00
mypaint
inkscape
2013-01-29 22:13:15 +00:00
nautilus-image-converter
optipng
2013-08-19 20:47:10 +00:00
phatch
screenruler
2013-09-10 23:04:33 +00:00
simple-scan
2013-01-29 22:13:15 +00:00
scribus
colord-extra-profiles
synfigstudio
xournal
# office
2013-08-19 20:47:10 +00:00
vym
2013-05-16 19:27:42 +00:00
pdfshuffler
2013-01-29 22:13:15 +00:00
# internet
filezilla
# audio & video
audacity
pitivi
# fonts
aajohan-comfortaa-fonts
adobe-source-sans-pro-fonts
campivisivi-titillium-fonts
2013-01-29 22:13:15 +00:00
lato-fonts
overpass-fonts
2013-02-07 22:49:40 +00:00
# removal of duplicated and unneeded applications
-gnome-boxes
2013-08-19 20:47:10 +00:00
-gthumb
2013-02-07 22:49:40 +00:00
-eog
2013-08-19 20:47:10 +00:00
-gnome-photos
2013-09-10 23:04:33 +00:00
-rdesktop
2013-04-02 07:21:01 +00:00
2013-02-07 22:49:40 +00:00
# Legacy cmdline things we don't want
-krb5-auth-dialog
-krb5-workstation
-pam_krb5
-quota
-minicom
-dos2unix
-finger
-ftp
-jwhois
-mtr
-pinfo
-rsh
-telnet
-nfs-utils
-ypbind
-yp-tools
-rpcbind
-acpid
-ntsysv
2013-01-29 22:13:15 +00:00
%end
%post
#Override the favorite desktop application in Dash
cat >> /usr/share/glib-2.0/schemas/org.gnome.shell.gschema.override << FOE
[org.gnome.shell]
favorite-apps=['firefox.desktop', 'evolution.desktop', 'shotwell.desktop', 'gimp.desktop', 'inkscape.desktop', 'blender.desktop', 'libreoffice-writer.desktop', 'scribus.desktop', 'nautilus.desktop', 'bijiben.desktop', 'anaconda.desktop', 'list-design-tutorials.desktop']
#Enable categories in Gnome Shell
app-folder-categories=['Utilities', 'Games', 'Sundry', 'Office', 'Network', 'Internet', 'Graphics', 'Multimedia', 'System', 'Development', 'Accessories', 'System Settings', 'wine-wine', 'Crossover', 'Crossover Games', 'Science', 'Education', 'Universal Access', 'Other']
FOE
2013-01-29 22:13:15 +00:00
2013-10-17 03:28:17 +00:00
# Add link to lists of tutorials
cat >> /usr/share/applications/list-design-tutorials.desktop << FOE
[Desktop Entry]
Name=List of design tutorials
GenericName=List of Tutorials for Designers
Comment=Reference of Design Related Tutorials
2013-10-17 03:28:17 +00:00
Exec=xdg-open http://fedoraproject.org/wiki/Design_Suite/Tutorials
Type=Application
Icon=applications-graphics
Categories=Graphics;Documentation;
FOE
chmod a+x /usr/share/applications/list-design-tutorials.desktop
# rebuild schema cache with any overrides we installed
glib-compile-schemas /usr/share/glib-2.0/schemas
2013-11-25 22:54:22 +00:00
#EOF
%end
2013-01-29 22:13:15 +00:00