2013-01-29 14:13:15 -08:00
|
|
|
# fedora-design-suite.ks
|
2014-12-12 17:17:25 -08:00
|
|
|
# Based on Live Workstation
|
2021-01-10 10:38:32 -08:00
|
|
|
# A collection of applications for professional visual designers
|
2020-11-22 00:50:38 -08:00
|
|
|
# http://fedoraproject.org/wiki/Design_Suite
|
|
|
|
# Maintained by Luya Tshimbalanga <luya AT fedoraproject DOT org>
|
|
|
|
# Credit to Sebastian Dziallas for initiating the project
|
2013-01-29 14:13:15 -08:00
|
|
|
|
2014-10-24 16:26:06 +02:00
|
|
|
%include fedora-live-workstation.ks
|
2021-01-10 10:38:32 -08:00
|
|
|
%include fedora-design-suite-common.ks
|
2013-01-29 14:13:15 -08:00
|
|
|
|
2016-02-15 22:26:22 -08:00
|
|
|
# Size partition
|
2016-03-23 23:35:43 -07:00
|
|
|
part / --size 14336
|
2013-01-29 14:13:15 -08:00
|
|
|
|
2013-08-11 19:46:39 -07:00
|
|
|
%post
|
2013-10-16 20:28:17 -07: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 13:52:54 -08:00
|
|
|
GenericName=List of Tutorials for Designers
|
|
|
|
Comment=Reference of Design Related Tutorials
|
2015-09-10 20:57:23 -07:00
|
|
|
Exec=xdg-open https://fedoraproject.org/wiki/Design_Suite/Tutorials
|
2013-10-16 20:28:17 -07:00
|
|
|
Type=Application
|
|
|
|
Icon=applications-graphics
|
|
|
|
Categories=Graphics;Documentation;
|
|
|
|
FOE
|
|
|
|
chmod a+x /usr/share/applications/list-design-tutorials.desktop
|
|
|
|
|
2015-02-27 20:09:04 -08:00
|
|
|
# Add information about Fedora Design Suite
|
|
|
|
cat >> /usr/share/applications/fedora-design-suite.desktop << FOE
|
2015-02-20 17:51:02 -08:00
|
|
|
[Desktop Entry]
|
2015-04-21 18:25:18 -07:00
|
|
|
Name=Design Suite Info
|
|
|
|
GenericName=About Design Suite
|
2015-03-09 02:29:53 -07:00
|
|
|
Comment=Wiki page of Design Suite
|
2015-09-10 20:57:23 -07:00
|
|
|
Exec=xdg-open https://fedoraproject.org/wiki/Design_Suite
|
2015-02-20 17:51:02 -08:00
|
|
|
Type=Application
|
2015-02-27 19:34:19 -08:00
|
|
|
Icon=applications-internet
|
|
|
|
Categories=Documentation;
|
|
|
|
FOE
|
2015-02-27 20:09:04 -08:00
|
|
|
chmod a+x /usr/share/applications/fedora-design-suite.desktop
|
2015-02-27 19:34:19 -08:00
|
|
|
|
|
|
|
# Add information about Fedora Design Team
|
|
|
|
cat >> /usr/share/applications/fedora-design-team.desktop << FOE
|
|
|
|
[Desktop Entry]
|
2015-04-21 18:25:18 -07:00
|
|
|
Name=Design Team Info
|
2015-03-09 02:29:53 -07:00
|
|
|
GenericName=About Design Team
|
2015-02-27 19:34:19 -08:00
|
|
|
Comment=Wiki page of Design Team
|
2015-09-10 20:57:23 -07:00
|
|
|
Exec=xdg-open https://fedoraproject.org/wiki/Design
|
2015-02-27 19:34:19 -08:00
|
|
|
Type=Application
|
|
|
|
Icon=applications-internet
|
|
|
|
Categories=Documentation;
|
2015-02-20 17:51:02 -08:00
|
|
|
FOE
|
|
|
|
chmod a+x /usr/share/applications/fedora-design-team.desktop
|
|
|
|
|
2020-11-22 00:50:38 -08:00
|
|
|
# Use Powerline in bash
|
|
|
|
cat >> $HOME/.bashrc << FOE
|
|
|
|
# Enable powerline daemon
|
|
|
|
if [ -f `which powerline-daemon` ]; then
|
|
|
|
powerline-daemon -q
|
|
|
|
POWERLINE_BASH_CONTINUATION=1
|
|
|
|
POWERLINE_BASH_SELECT=1
|
|
|
|
. /usr/share/powerline/bash/powerline.sh
|
|
|
|
fi
|
|
|
|
FOE
|
|
|
|
|
2022-11-29 01:30:25 -05:00
|
|
|
cat >> /var/lib/livesys/livesys-session-extra << FOE
|
2021-02-22 17:11:43 -08:00
|
|
|
#Override the favorite desktop application in Dash
|
2022-11-29 01:30:25 -05:00
|
|
|
sed -i "s/favorite-apps=."'*'"/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']/" /usr/share/glib-2.0/schemas/org.gnome.shell.gschema.override
|
|
|
|
FOE
|
2021-02-22 17:11:43 -08:00
|
|
|
|
2022-08-19 08:05:39 -07:00
|
|
|
# rebuild schema cache with any overrides we installed
|
|
|
|
glib-compile-schemas /usr/share/glib-2.0/schemas
|
|
|
|
|
2013-08-11 19:46:39 -07:00
|
|
|
%end
|