An open API service indexing awesome lists of open source software.

https://github.com/grype/flickrbackgrounds

Tiny tool to set Pharo's world background to a random image using Flickr API
https://github.com/grype/flickrbackgrounds

pharo

Last synced: about 2 months ago
JSON representation

Tiny tool to set Pharo's world background to a random image using Flickr API

Awesome Lists containing this project

README

        

# FlickrBackgrounds

Tiny tool to set Pharo's world background to a random image using Flickr API

# Quick Start

## Installation via Script

```Smalltalk
Metacello new
repository: 'github://grype/FlickrBackgrounds:main/src';
baseline: 'FlickrBackgrounds';
load
```

## API Keys

To set the API key (see https://www.flickr.com/services/apps/create/)

```Smalltalk
FlickrBackgrounds apiKey: ''.
```

## UI

To open a simple UI for changing the background image

```Smalltalk
FlickrBackgroundsPresenter new open.
```