-
Notifications
You must be signed in to change notification settings - Fork 34
Installation config hook KDE #66
Copy link
Copy link
Open
Labels
Description
I needed some tweaking to the config file to get it to work in kde:
Mine looks like this:
hook:
# Set the KDE Plasma Desktop Wallpaper
"echo 'test' \n"
"blank=$HOME/.config/pacwall/oneblackpixel.png"
"plasma-apply-wallpaperimage $blank \n"
"plasma-apply-wallpaperimage $W \n"
# Set the KDE Plasma Lock Screen Wallpaper
"kwriteconfig5 --file kscreenlockerrc --group Greeter --key WallpaperPlugin org.kde.image \n"
"kwriteconfig5 --file kscreenlockerrc --group Greeter --group Wallpaper --group org.kde.iemage --group General --key Color \"#073642\" \n"
"kwriteconfig5 --file kscreenlockerrc --group Greeter --group Wallpaper --group org.kde.iemage --group General --key FillMode 6 \n"
"kwriteconfig5 --file kscreenlockerrc --group Greeter --group Wallpaper --group org.kde.iemage --group General --key Image $W \n"
so I needed to add quotes and newlines to everything. Otherwise it complained about having a missconfigured config.
Reactions are currently unavailable