92 lines
2.0 KiB
Plaintext
92 lines
2.0 KiB
Plaintext
|
# fedora-design-suite.ks
|
||
|
# Based on Live Desktop
|
||
|
# Description:
|
||
|
# - A Spin targeted towards professional designers
|
||
|
# Website: http://fedoraproject.org/wiki/Design_Suite
|
||
|
# Maintainers:
|
||
|
# - Luya Tshimbalanga <sdz AT fedoraproject DOT org>
|
||
|
# - Sebastian Dziallas <sdz AT fedoraproject DOT org>
|
||
|
|
||
|
%include fedora-live-desktop.ks
|
||
|
|
||
|
#DVD size partition
|
||
|
part / --size 4096
|
||
|
|
||
|
%packages
|
||
|
|
||
|
# graphics
|
||
|
blender
|
||
|
bluefish # designer can build website
|
||
|
cinepaint # enabled for HDR pictures support
|
||
|
cmyktool
|
||
|
darktable # replaces rawtherapee as default
|
||
|
dia
|
||
|
entangle
|
||
|
fontforge
|
||
|
font-manager # replaces fontmatrix
|
||
|
gimp
|
||
|
gimp-*-plugin
|
||
|
GREYCstoration-gimp
|
||
|
hugin # reintroduced
|
||
|
inkscape
|
||
|
mypaint
|
||
|
nautilus-image-converter
|
||
|
optipng
|
||
|
# pinta # is huge because it needs mono
|
||
|
# postr # dropped because shotwell support flickr upload
|
||
|
scribus
|
||
|
colord-extra-profiles
|
||
|
synfigstudio
|
||
|
# ufraw # dropped as duplicate of darktable
|
||
|
xournal
|
||
|
|
||
|
# office
|
||
|
gnote
|
||
|
pdfshuffler #replaces pdfmod which needs mono dependencies
|
||
|
|
||
|
# internet
|
||
|
filezilla
|
||
|
|
||
|
# audio & video
|
||
|
audacity
|
||
|
pitivi
|
||
|
|
||
|
# system
|
||
|
# gtk-recordmydesktop # dropped for space (#887991)
|
||
|
# network-manager-applet #part of Gnome Desktop
|
||
|
|
||
|
# fonts
|
||
|
aajohan-comfortaa-fonts
|
||
|
adobe-source-sans-pro-fonts
|
||
|
lato-fonts
|
||
|
overpass-fonts
|
||
|
|
||
|
%end
|
||
|
|
||
|
%post
|
||
|
|
||
|
#Include favorite design applications
|
||
|
cat >> /usr/share/glib-2.0/schemas/org.gnome.shell.gschema.override << FOE
|
||
|
[org.gnome.shell]
|
||
|
favorite-apps=['firefox.desktop', 'evolution.desktop', 'empathy.desktop', 'rhythmbox.desktop', 'shotwell.desktop', 'gimp.desktop', 'inkscape.desktop', 'scribus.desktop', 'nautilus.desktop', 'anaconda.desktop']
|
||
|
FOE
|
||
|
|
||
|
|
||
|
# Add link to the Inkscape Course
|
||
|
cat >> /usr/share/applications/inkscape-course.desktop << FOE
|
||
|
[Desktop Entry]
|
||
|
Name=Introduction To Inkscape
|
||
|
GenericName=Inkscape Course
|
||
|
Comment=Materials from Máirín Duffy's Inkscape Class
|
||
|
Exec=xdg-open http://linuxgrrl.com/learn/Introduction_To_Inkscape
|
||
|
Type=Application
|
||
|
Icon=fedora-logo-icon
|
||
|
Categories=Graphics;Documentation;
|
||
|
FOE
|
||
|
chmod a+x /usr/share/applications/inkscape-course.desktop
|
||
|
|
||
|
EOF
|
||
|
|
||
|
%end
|
||
|
|