Skip to content

Instantly share code, notes, and snippets.

@discentem
Forked from gregneagle/docklib.py
Last active November 16, 2017 05:19
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save discentem/448b3f99b98ebabdcb56a55c40076449 to your computer and use it in GitHub Desktop.
Save discentem/448b3f99b98ebabdcb56a55c40076449 to your computer and use it in GitHub Desktop.
'''Routines for manipulating the Dock'''
import os
import subprocess
from Foundation import NSURL
from Foundation import CFPreferencesAppSynchronize
from Foundation import CFPreferencesCopyAppValue
from Foundation import CFPreferencesSetAppValue
class DockError(Exception):
'''Basic exception'''
pass
class Dock():
'''Class to handle Dock operations'''
_DOMAIN = 'com.apple.dock'
_DOCK_PLIST = os.path.expanduser(
'~/Library/Preferences/com.apple.dock.plist')
_DOCK_LAUNCHAGENT_ID = 'com.apple.Dock.agent'
_DOCK_LAUNCHAGENT_FILE = '/System/Library/LaunchAgents/com.apple.Dock.plist'
_SECTIONS = ['persistent-apps', 'persistent-others']
items = {}
def __init__(self):
for key in self._SECTIONS:
try:
section = CFPreferencesCopyAppValue(key, self._DOMAIN)
self.items[key] = section.mutableCopy()
except Exception:
raise
def save(self):
'''saves our (modified) Dock preferences'''
# unload Dock launchd job so we can make our changes unmolested
subprocess.call(
['/bin/launchctl', 'unload', self._DOCK_LAUNCHAGENT_FILE])
for key in self._SECTIONS:
try:
CFPreferencesSetAppValue(key, self.items[key], self._DOMAIN)
except Exception:
raise DockError
if not CFPreferencesAppSynchronize(self._DOMAIN):
raise DockError
# restart the Dock
subprocess.call(['/bin/launchctl', 'load', self._DOCK_LAUNCHAGENT_FILE])
subprocess.call(['/bin/launchctl', 'start', self._DOCK_LAUNCHAGENT_ID])
def findExistingLabel(self, test_label, section='persistent-apps'):
'''returns index of item with label matching test_label
or -1 if not found'''
for index in range(len(self.items[section])):
if (self.items[section][index]['tile-data'].get('file-label') ==
test_label):
return index
return -1
def removeDockEntry(self, label, section=None):
'''Removes a Dock entry with matching label, if any'''
if section:
sections = [section]
else:
sections = self._SECTIONS
for section in sections:
found_index = self.findExistingLabel(label, section=section)
if found_index > -1:
del self.items[section][found_index]
def replaceDockEntry(self, thePath, label=None, section='persistent-apps'):
'''Replaces a Dock entry. If label is None, then a label is derived
from the item path. The new entry replaces an entry with the given
or derived label'''
if section == 'persistent-apps':
new_item = self.makeDockAppEntry(thePath)
else:
new_item = self.makeDockOtherEntry(thePath)
if new_item:
if not label:
label = os.path.splitext(os.path.basename(thePath))[0]
found_index = self.findExistingLabel(label, section=section)
if found_index > -1:
self.items[section][found_index] = new_item
def makeDockAppSpacer(self):
return {'tile-data': {},
'tile-type': 'spacer-tile'}
def makeDockAppEntry(self, thePath):
'''returns a dictionary corresponding to a Dock application item'''
label_name = os.path.splitext(os.path.basename(thePath))[0]
ns_url = NSURL.fileURLWithPath_(thePath).absoluteString()
return {'tile-data': {'file-data': {'_CFURLString': ns_url,
'_CFURLStringType': 15},
'file-label': label_name,
'file-type': 41},
'tile-type': 'file-tile'}
def makeDockOtherEntry(self, thePath,
arrangement=0, displayas=1, showas=0):
'''returns a dictionary corresponding to a Dock folder or file item'''
# arrangement values:
# 1: sort by name
# 2: sort by date added
# 3: sort by modification date
# 4: sort by creation date
# 5: sort by kind
#
# displayas values:
# 0: display as stack
# 1: display as folder
#
# showas values:
# 0: auto
# 1: fan
# 2: grid
# 3: list
label_name = os.path.splitext(os.path.basename(thePath))[0]
if arrangement == 0:
if label_name == 'Downloads':
# set to sort by date added
arrangement = 2
else:
# set to sort by name
arrangement = 1
ns_url = NSURL.fileURLWithPath_(thePath).absoluteString()
if os.path.isdir(thePath):
return {'tile-data':{'arrangement': arrangement,
'displayas': displayas,
'file-data':{'_CFURLString': ns_url,
'_CFURLStringType': 15},
'file-label': label_name,
'dock-extra': False,
'showas': showas
},
'tile-type':'directory-tile'}
else:
return {'tile-data':{'file-data':{'_CFURLString': ns_url,
'_CFURLStringType': 15},
'file-label': label_name,
'dock-extra': False},
'tile-type':'file-tile'}
# example use
from docklib import Dock
dock = Dock()
dock.items['persistent-apps'] = []
defaultPath = '/Applications/'
defaultExtension = '.app'
appsToAdd = [
'Launchpad',
'',
'Google Chrome',
'iTunes',
'App Store',
'',
'Messages',
'Slack',
'',
'System Preferences',
'',
'iTerm',
'Atom',
'',
'Notes',
'Preview'
]
for app in appsToAdd:
if app == '':
item = dock.makeDockAppSpacer()
else:
entry = defaultPath + app + defaultExtension
item = dock.makeDockAppEntry(entry)
dock.items['persistent-apps'].append(item)
dock.save()
# print dock.items['persistent-apps']
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment