Ajustando o script Python de alteração da área de trabalho 10.10

Ajustando o script Python de alteração da área de trabalho 10.10

Não sou fantástico em Python e atualmente estou usando um script baseado emhttps://gist.github.com/gregneagle/6957826.

Estou tentando fazer uma alteração na opção Desktop Image Dictionary Keys no script a seguir, mas não tenho certeza de qual é o código correto.

Código Atual

options = {}

O que eu quero inserir é um valor NO para "NSWorkspaceDesktopImageAllowClippingKey" (Referência:https://developer.apple.com/library/mac/documentation/Cocoa/Reference/ApplicationKit/Classes/NSWorkspace_Class/index.html#//apple_ref/doc/constant_group/Desktop_Image_Dictionary_Keys)

Meu objetivo final é apenas fazer com que este programa defina a imagem da área de trabalho em 10.9 e 10.10 para FIT to screen em vez de FILL screen, que é o que parece sempre ser o padrão. Faz parte de um utilitário de imagem do NetRestore, então preciso automatizar isso, pois essas informações estão contidas nas Preferências do ByHost.

Obrigado!

-rks

Aqui está o script original para quem precisar:

#!/usr/bin/python

'''Uses Cocoa classes via PyObjC to set a desktop picture on all screens.
Tested on Mountain Lion and Mavericks. Inspired by Greg Neagle's work: https://gist.github.com/gregneagle/6957826

See:
https://developer.apple.com/library/mac/documentation/cocoa/reference/applicationkit/classes/NSWorkspace_Class/Reference/Reference.html

https://developer.apple.com/library/mac/documentation/Cocoa/Reference/Foundation/Classes/NSURL_Class/Reference/Reference.html

https://developer.apple.com/library/mac/documentation/cocoa/reference/applicationkit/classes/NSScreen_Class/Reference/Reference.html
'''

from AppKit import NSWorkspace, NSScreen
from Foundation import NSURL
import argparse
import sys

parser = argparse.ArgumentParser(description='Sets the desktop picture on all screens')
parser.add_argument('--path', help='The path of the image')
args = vars(parser.parse_args())

if args['path']:
    picture_path = args['path']
else:
    print >> sys.stderr, 'You must supply a path for the desktop picture'
    exit(-1)

# generate a fileURL for the desktop picture
file_url = NSURL.fileURLWithPath_(picture_path)

# make image options dictionary
# we just make an empty one because the defaults are fine
options = {}

# get shared workspace
ws = NSWorkspace.sharedWorkspace()

# iterate over all screens
for screen in NSScreen.screens():
    # tell the workspace to set the desktop picture
    (result, error) = ws.setDesktopImageURL_forScreen_options_error_(
                file_url, screen, options, None)
    if error:
        print error
        exit(-1)

informação relacionada