7 lines
307 B
Bash
7 lines
307 B
Bash
|
#!/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
|