You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
503 B
11 lines
503 B
#!/bin/sh
|
|
|
|
if [ "`kreadconfig5 --file fedora-obsolete_kickoffrc --group 5.5.0-1 --key FirstRun --default true`" = "true" ]; then
|
|
sed -i \
|
|
-e 's|=/usr/share/plasma/shells/org.kde.plasma.desktop/contents/updates/obsolete_kickoffrc.js||g' \
|
|
-e 's|,/usr/share/plasma/shells/org.kde.plasma.desktop/contents/updates/obsolete_kickoffrc.js||g' \
|
|
`kf5-config --path config --locate plasmashellrc` && \
|
|
kwriteconfig5 --file fedora-obsolete_kickoffrc --group 5.5.0-1 --key FirstRun --type bool false
|
|
fi
|
|
|