https://github.com/myterminal/emacs-sounds
Sound effects for Emacs
https://github.com/myterminal/emacs-sounds
emacs sound-effects
Last synced: about 1 month ago
JSON representation
Sound effects for Emacs
- Host: GitHub
- URL: https://github.com/myterminal/emacs-sounds
- Owner: myTerminal
- License: gpl-3.0
- Created: 2016-12-10T14:05:09.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2021-07-14T05:15:24.000Z (almost 5 years ago)
- Last Synced: 2026-03-08T04:05:37.082Z (4 months ago)
- Topics: emacs, sound-effects
- Language: Emacs Lisp
- Size: 16.6 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# emacs-sounds
[](https://marmalade-repo.org/packages/emacs-sounds)
[](https://www.gnu.org/licenses/gpl.html)
Sound effects for Emacs.
You can use emacs-sounds to get visible feedback from Emacs for various events, including the bell.
## Installation
### Manual
Save the file *emacs-sounds.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 'emacs-sounds)
### Marmalade
If you have Marmalade added as a repository to your Emacs, you can just install *emacs-sounds* with
M-x package-install emacs-sounds RET
## Usage
Enable emacs-sounds-mode globally.
(emacs-sounds-mode)
You need to configure your own sounds for the package to be able to work.
Set `emacs-sounds-bell-sound`, `emacs-sounds-window-change-sound` and `emacs-sounds-find-file-sound` with paths of sound files to be played at the respective events.
(setq emacs-sounds-bell-sound
"/home/ismail/sounds/sound1.wav")
You just need to remember that the sound files must be '.wav' audio files.
## Dependencies
* [sound-wav](https://github.com/syohex/emacs-sound-wav)