summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKevin Kofler <Kevin@tigcc.ticalc.org>2012-01-24 17:29:54 +0100
committerKevin Kofler <Kevin@tigcc.ticalc.org>2012-01-24 17:43:49 +0100
commitc2c81074687187ae880e354d22042c9a7e4cabbd (patch)
tree81bafbfe66a81b0cfa5e68d629054772a38465c7
parent4a183c37eb9c41445174251f88192113d9649458 (diff)
downloadspin-kickstarts-c2c81074687187ae880e354d22042c9a7e4cabbd.tar.gz
spin-kickstarts-c2c81074687187ae880e354d22042c9a7e4cabbd.tar.xz
spin-kickstarts-c2c81074687187ae880e354d22042c9a7e4cabbd.zip
fedora-live-kde-base.ks: Default to oxygen-gtk3.
- Pull in oxygen-gtk3 instead of adwaita-gtk3-theme. - Also handle GTK+ 3 in the workaround for apps running as root.
-rw-r--r--fedora-live-kde-base.ks10
1 files changed, 7 insertions, 3 deletions
diff --git a/fedora-live-kde-base.ks b/fedora-live-kde-base.ks
index 0127f66..715918a 100644
--- a/fedora-live-kde-base.ks
+++ b/fedora-live-kde-base.ks
@@ -22,8 +22,8 @@ alsa-utils
# make sure gnome-packagekit doesn't end up the KDE live images
-gnome-packagekit*
-# pull in adwaita-gtk3-theme as long as we don't have native GTK+ 3 theming
-adwaita-gtk3-theme
+# pull in oxygen-gtk3 manually until we have the metapackage set up
+oxygen-gtk3
%end
@@ -36,12 +36,16 @@ DESKTOP="KDE"
DISPLAYMANAGER="KDE"
EOF
-# make oxygen-gtk the default GTK+ 2 theme for root (see #683855, #689070)
+# make oxygen-gtk the default GTK+ theme for root (see #683855, #689070)
cat > /root/.gtkrc-2.0 << EOF
include "/usr/share/themes/oxygen-gtk/gtk-2.0/gtkrc"
include "/etc/gtk-2.0/gtkrc"
gtk-theme-name="oxygen-gtk"
EOF
+cat > /root/.config/gtk-3.0/settings.ini << EOF
+[Settings]
+gtk-theme-name = oxygen-gtk
+EOF
# add initscript
cat >> /etc/rc.d/init.d/livesys << EOF