pywal
pywal copied to clipboard
Wallpaper not set on XFCE 4.16
I'm trying to set a wallpaper with pywal on XFCE 4.16 and it doesnt work. I've tried installing feh and nitrogen but they don't work either. I remember being able to change my wallpaper with pywal a couple years ago, but it doesn't work now. It does work on Gnome though
I can confirm the problem persists on my Kali Linux XFCE 4.16. I wrote a quick bash script that executes a wallpaper change command followed by the "wal -i
#!/bin/bash
echo Please provide image path
read FILE
if [ -f "$FILE" ]; then
echo "$FILE exists."
xfconf-query --channel xfce4-desktop --property /backdrop/screen0/monitorVirtual1/workspace0/last-image --set $FILE
wal -i $FILE
echo \n Wallpaper and Color Style successfully changed.
else
echo "$FILE does not exist."
fi