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.
7 lines
307 B
7 lines
307 B
12 months ago
|
#!/bin/sh
|
||
|
|
||
|
if [ "`kreadconfig5 --file fedora-plasma-cacherc --group @@VERSION@@ --key FirstRun --default true`" = "true" ]; then
|
||
|
rm -fv "${XDG_CACHE_HOME:-${HOME}/.cache}"/{*.kcache,plasma-svgelements-*}
|
||
|
kwriteconfig5 --file fedora-plasma-cacherc --group @@VERSION@@ --key FirstRun --type bool false
|
||
|
fi
|