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
- Host: GitHub
- URL: https://github.com/grype/flickrbackgrounds
- Owner: grype
- License: mit
- Created: 2023-01-26T06:09:06.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-06-12T16:12:35.000Z (12 months ago)
- Last Synced: 2025-02-08T06:33:21.744Z (4 months ago)
- Topics: pharo
- Language: Smalltalk
- Homepage:
- Size: 53.7 KB
- Stars: 0
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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.
```