forked from Mario1159/osic-stacks
5 lines
168 B
Bash
5 lines
168 B
Bash
#!/bin/bash
|
|
xfconf-query --channel xfce4-desktop --list | grep last-image | while read path; do
|
|
xfconf-query --channel xfce4-desktop --property $path --set $1
|
|
done
|