fedora-kickstarts/fedora-live-design_suite.ks

99 lines
2.7 KiB
Plaintext
Raw Normal View History

2013-01-29 22:13:15 +00:00
# fedora-design-suite.ks
# Based on Live Workstation
2013-01-29 22:13:15 +00:00
# Description:
# - A collection of applications targeted towards professional visual designers
2013-01-29 22:13:15 +00:00
# Website: http://fedoraproject.org/wiki/Design_Suite
# Maintainer:
2013-11-17 19:46:37 +00:00
# - Luya Tshimbalanga <luya AT fedoraproject DOT org>
# - Credit to Sebastian Dziallas for initiating the project
2013-01-29 22:13:15 +00:00
%include fedora-live-workstation.ks
2013-01-29 22:13:15 +00:00
# Size partition
part / --size 14336
2013-01-29 22:13:15 +00:00
%packages
# Switch to groups for design suite
@design-suite
2013-01-29 22:13:15 +00:00
# Provides backup application
deja-dup
deja-dup-nautilus
# Add extra gnome applications
gnome-books
gnome-calendar
gnome-photos
gnome-shell-extension-pomodoro
gnome-todo
# Add cosmetic for gnome-terminal
powerline
powerline-fonts
# Extra wallpapers
f31-backgrounds-extras-gnome
2015-01-18 00:11:33 +00:00
# removal of unneeded applications
2013-02-07 22:49:40 +00:00
-gnome-boxes
-eog
2013-09-10 23:04:33 +00:00
-rdesktop
2013-04-02 07:21:01 +00:00
# temporarily removing conflicting application
-mypaint
-sparkleshare
-blender-luxcorerender
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', 'shotwell.desktop', 'gimp.desktop', 'darktable.desktop','krita.desktop', 'inkscape.desktop', 'blender.desktop', 'libreoffice-writer.desktop', 'scribus.desktop', 'pitivi.desktop', 'nautilus.desktop', 'bijiben.desktop', 'anaconda.desktop', 'list-design-tutorials.desktop']
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
2015-09-11 03:57:23 +00:00
Exec=xdg-open https://fedoraproject.org/wiki/Design_Suite/Tutorials
2013-10-17 03:28:17 +00:00
Type=Application
Icon=applications-graphics
Categories=Graphics;Documentation;
FOE
chmod a+x /usr/share/applications/list-design-tutorials.desktop
# Add information about Fedora Design Suite
cat >> /usr/share/applications/fedora-design-suite.desktop << FOE
2015-02-21 01:51:02 +00:00
[Desktop Entry]
2015-04-22 01:25:18 +00:00
Name=Design Suite Info
GenericName=About Design Suite
Comment=Wiki page of Design Suite
2015-09-11 03:57:23 +00:00
Exec=xdg-open https://fedoraproject.org/wiki/Design_Suite
2015-02-21 01:51:02 +00:00
Type=Application
2015-02-28 03:34:19 +00:00
Icon=applications-internet
Categories=Documentation;
FOE
chmod a+x /usr/share/applications/fedora-design-suite.desktop
2015-02-28 03:34:19 +00:00
# Add information about Fedora Design Team
cat >> /usr/share/applications/fedora-design-team.desktop << FOE
[Desktop Entry]
2015-04-22 01:25:18 +00:00
Name=Design Team Info
GenericName=About Design Team
2015-02-28 03:34:19 +00:00
Comment=Wiki page of Design Team
2015-09-11 03:57:23 +00:00
Exec=xdg-open https://fedoraproject.org/wiki/Design
2015-02-28 03:34:19 +00:00
Type=Application
Icon=applications-internet
Categories=Documentation;
2015-02-21 01:51:02 +00:00
FOE
chmod a+x /usr/share/applications/fedora-design-team.desktop
# rebuild schema cache with any overrides we installed
glib-compile-schemas /usr/share/glib-2.0/schemas
%end