Esempio n. 1
0
def create_phatch_inspector_droplet(folder, icon='phatch'):
    """"""
    create_droplet(
        name=ct.LABEL_PHATCH_INSPECTOR,
        command=ct.COMMAND['INSPECTOR'],
        folder=folder,
        icon=icon,
    )
Esempio n. 2
0
def create_phatch_recent_droplet(folder, icon='phatch'):
    """"""
    create_droplet(
        name=ct.LABEL_PHATCH_RECENT,
        command=ct.COMMAND['RECENT'],
        folder=folder,
        icon=icon,
    )
Esempio n. 3
0
def create_phatch_droplet(actionlist, folder, icon='phatch'):
    """"""
    create_droplet(
        name=system.filename_to_title(actionlist),
        command=ct.COMMAND['DROP'] % actionlist,
        folder=folder,
        icon=icon,
    )
Esempio n. 4
0
def create_phatch_inspector_droplet(folder, icon="phatch"):
    """"""
    create_droplet(name=ct.LABEL_PHATCH_INSPECTOR, command=ct.COMMAND["INSPECTOR"], folder=folder, icon=icon)
Esempio n. 5
0
def create_phatch_recent_droplet(folder, icon="phatch"):
    """"""
    create_droplet(name=ct.LABEL_PHATCH_RECENT, command=ct.COMMAND["RECENT"], folder=folder, icon=icon)
Esempio n. 6
0
def create_phatch_droplet(actionlist, folder, icon="phatch"):
    """"""
    create_droplet(
        name=system.filename_to_title(actionlist), command=ct.COMMAND["DROP"] % actionlist, folder=folder, icon=icon
    )