16 lines
327 B
Bash
16 lines
327 B
Bash
#!/bin/sh
|
|
|
|
comment="Wallpaper for Kali Purple theme"
|
|
|
|
if ! grep -q "${comment}" /usr/share/plasma/desktoptheme/kali/metadata.desktop; then
|
|
cat >> /usr/share/plasma/desktoptheme/kali/metadata.desktop <<- EOF
|
|
# $comment
|
|
[Wallpaper]
|
|
defaultWallpaperTheme=KaliPurple
|
|
defaultWidth=3840
|
|
defaultHeight=2160
|
|
EOF
|
|
fi
|
|
|
|
#DEBHELPER#
|