osx - Set folder background image on Mac with Python -
i change background images of folders in mac os 10.9 based on name. can't seem find way of changing background picture in python or information background picture in general.
i believe things such background image , icon positioning stored in .ds_store, possibility modify change image?
if not possible in python there suggested language able this?
i believe things such background image , icon positioning stored in .ds_store, possibility modify change image?
you can explore ds_store
settings using xattr
command, or ls -@
command if you're using default osx utils.
if not possible in python there suggested language able this?
there xattr
python package lets this.
for background images, found that answer though it's dmgs.
though, there's graphical recipe change folder's background, still can't find extended attribute property being used there…
i did change folder's background, there's no extended attributes setting has been changed because of that. , folder contains no .ds_store
file well. information maybe stored in application support
or preferences
database used finder…
finally, code own ds_store parsing module easily, using following information:
which tells ds_store has indeed background field.
finally, looks perl has ds_store
module:
Comments
Post a Comment