https://github.com/myterminal/zone-quotes
A zone program to display quotes from a specific collection
https://github.com/myterminal/zone-quotes
emacs zoning
Last synced: 4 days ago
JSON representation
A zone program to display quotes from a specific collection
- Host: GitHub
- URL: https://github.com/myterminal/zone-quotes
- Owner: myTerminal
- License: gpl-3.0
- Created: 2017-09-19T16:43:15.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2022-08-13T19:33:44.000Z (almost 4 years ago)
- Last Synced: 2026-03-08T04:05:38.186Z (3 months ago)
- Topics: emacs, zoning
- Language: Emacs Lisp
- Homepage:
- Size: 146 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# zone-quotes
[](https://marmalade-repo.org/packages/zone-quotes)
[](https://www.gnu.org/licenses/gpl.html)
[](https://ko-fi.com/Y8Y5E5GL7)
A zone program to display quotes from a specific collection

## Installation
### Manual
Save the file *zone-quotes.el* to disk and add the directory containing it to `load-path` using a command in your *.emacs* file like:
(add-to-list 'load-path "~/.emacs.d/")
The above line assumes that you've placed the file into the Emacs directory '.emacs.d'.
Start the package with:
(require 'zone-quotes)
### Marmalade
If you have Marmalade added as a repository to your Emacs, you can just install *zone-quotes* with
M-x package-install zone-quotes RET
## Usage
Specify the quotes you want, to be shown while zoning out
(zone-quotes-set-quotes (list "'I don't need luck. I have ammo.' - Grunt"
"'Is submission not preferable to extinction?' - Saren"
"'Having a bad day Shepard?' - Liara"))
Set `zone-pgm-quotes` as one of the zone programs
(setq zone-programs
[zone-pgm-quotes])
and activate zoning by specifying a delay
(zone-when-idle 30)
Alternatively, you can run `zone-quotes` directly
(zone-quotes)