2013-01-29 22:13:15 +00:00
|
|
|
# fedora-design-suite.ks
|
2014-12-13 01:17:25 +00:00
|
|
|
# Based on Live Workstation
|
2013-01-29 22:13:15 +00:00
|
|
|
# Description:
|
2016-09-28 23:51:42 +00:00
|
|
|
# - A collection of applications targeted towards professional visual designers
|
2013-01-29 22:13:15 +00:00
|
|
|
# Website: http://fedoraproject.org/wiki/Design_Suite
|
2016-09-28 23:51:42 +00:00
|
|
|
# Maintainer:
|
2013-11-17 19:46:37 +00:00
|
|
|
# - Luya Tshimbalanga <luya AT fedoraproject DOT org>
|
2016-09-28 23:51:42 +00:00
|
|
|
# - Credit to Sebastian Dziallas for initiating the project
|
2013-01-29 22:13:15 +00:00
|
|
|
|
2014-10-24 14:26:06 +00:00
|
|
|
%include fedora-live-workstation.ks
|
2013-01-29 22:13:15 +00:00
|
|
|
|
2016-02-16 06:26:22 +00:00
|
|
|
# Size partition
|
2016-03-24 06:35:43 +00:00
|
|
|
part / --size 14336
|
2013-01-29 22:13:15 +00:00
|
|
|
|
|
|
|
%packages
|
2016-01-10 04:46:16 +00:00
|
|
|
# Switch to groups for design suite
|
|
|
|
@design-suite
|
2013-01-29 22:13:15 +00:00
|
|
|
|
2017-07-18 05:06:50 +00:00
|
|
|
# Provides backup application
|
|
|
|
deja-dup
|
|
|
|
deja-dup-nautilus
|
|
|
|
|
2016-09-28 23:51:42 +00:00
|
|
|
# Add extra gnome applications
|
|
|
|
gnome-books
|
|
|
|
gnome-calendar
|
2016-01-10 04:46:16 +00:00
|
|
|
gnome-photos
|
2017-07-18 05:06:50 +00:00
|
|
|
gnome-shell-extension-pomodoro
|
|
|
|
gnome-todo
|
|
|
|
|
|
|
|
# Add cosmetic for gnome-terminal
|
|
|
|
powerline
|
|
|
|
powerline-fonts
|
|
|
|
|
2015-10-13 17:37:40 +00:00
|
|
|
# Extra wallpapers
|
2018-09-15 06:18:49 +00:00
|
|
|
f28-backgrounds-extras-base
|
|
|
|
f28-backgrounds-extras-gnome
|
2016-10-28 02:00:38 +00:00
|
|
|
|
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
|
|
|
|
2013-01-29 22:13:15 +00:00
|
|
|
%end
|
|
|
|
|
2013-08-12 02:46:39 +00:00
|
|
|
%post
|
|
|
|
#Override the favorite desktop application in Dash
|
|
|
|
cat >> /usr/share/glib-2.0/schemas/org.gnome.shell.gschema.override << FOE
|
|
|
|
[org.gnome.shell]
|
2017-09-30 03:02:16 +00:00
|
|
|
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']
|
2013-08-12 02:46:39 +00:00
|
|
|
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
|
2013-11-22 21:52:54 +00:00
|
|
|
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
|
|
|
|
|
2015-02-28 04:09:04 +00:00
|
|
|
# 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
|
2015-03-09 09:29:53 +00:00
|
|
|
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
|
2015-02-28 04:09:04 +00:00
|
|
|
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
|
2015-03-09 09:29:53 +00:00
|
|
|
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
|
|
|
|
|
2013-08-12 02:46:39 +00:00
|
|
|
# rebuild schema cache with any overrides we installed
|
|
|
|
glib-compile-schemas /usr/share/glib-2.0/schemas
|
|
|
|
|
|
|
|
%end
|