Editorial Workflows

Show Clipboard

unlisted workflow

Install Workflow...

This workflow contains at least one Python script. Only use it if you trust the person who shared this with you, and if you know exactly what it does.

I understand, install the workflow!

This is a workflow for Editorial, a Markdown and plain text editor for iOS. To download it, you need to view this page on a device that has the app installed.

Description: Displays current clipboard contents (text or image) on the console.

:::Made by Macdrifter

Comments: Comment Feed (RSS)

There are no comments yet.

+ Add Comment

Workflow Preview
Run Python Script ?
Source Code
#coding: utf-8
import workflow
import clipboard
import console
import Image

clip_image = clipboard.get_image()
clip_text = clipboard.get()


if not clip_image:
	console.set_color((float(238)/255), (float(154)/255), (float(0)/255))
	print clip_text
else:
	clip_image.show()