Dengan Linux Mint 16 (tidak yakin tentang versi lain), Anda dapat menggunakan gsettings
keduanya untuk mendapatkan informasi tentang wallpaper saat ini serta mengaturnya .
The man gsettings
adalah sedikit tipis, tapi TAB selesai akan bekerja paling langkah di perintah berikut.
Mendapatkan informasi:
gsettings get org.cinnamon.desktop.background picture-uri
gsettings get org.cinnamon.desktop.background picture-opacity
gsettings get org.cinnamon.desktop.background picture-options
Untuk mengubah opsi apa pun, cukup ubah "dapatkan" ke "set" dan tambahkan nilai baru ke akhir.
Berikut ini adalah skrip cepat yang akan menggilir daftar wallpaper yang diketahui:
#!/bin/sh
#
# Set the wallpaper from a list
#
# The list, all can be found in $BASE
BASE="file:///home/tigger/.wallpapers/"
LIST="shot1.png another.png just_no_space_in_name.png keep_adding.png"
# The current wallpaper
current=`gsettings get org.cinnamon.desktop.background picture-uri`
opacity=`gsettings get org.cinnamon.desktop.background picture-opacity`
options=`gsettings get org.cinnamon.desktop.background picture-options`
# loop over the list until we find a match
matched=0
new=""
for wp in $LIST
do
if [ $matched -eq 1 ]
then
new="${BASE}${wp}"
break
elif [ "'${BASE}${wp}'" = "${current}" ]
then
matched=1
fi
done
# if "$new" is blank, then we show the first shot
if [ "$new" = "" ]
then
new=${BASE}${LIST%% *}
fi
# set the wallpaper
gsettings set org.cinnamon.desktop.background picture-uri \'${new}\'
gsettings set org.cinnamon.desktop.background picture-opacity ${opacity}
gsettings set org.cinnamon.desktop.background picture-options ${options}