https://github.com/konijima/cc-music-player
Simple music player for ComputerCraft
https://github.com/konijima/cc-music-player
computercraft minecraft
Last synced: 14 days ago
JSON representation
Simple music player for ComputerCraft
- Host: GitHub
- URL: https://github.com/konijima/cc-music-player
- Owner: Konijima
- Created: 2022-05-13T14:39:45.000Z (almost 3 years ago)
- Default Branch: master
- Last Pushed: 2022-05-16T04:20:10.000Z (almost 3 years ago)
- Last Synced: 2025-02-15T09:17:01.205Z (2 months ago)
- Topics: computercraft, minecraft
- Language: Lua
- Homepage:
- Size: 1.25 MB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# cc-music-player
Simple music player for ComputerCraft.
- Require a speaker to be connected.
- Optionally connect with advanced monitor.
- Use click/touch on advanced computers.
## Install
```bash
wget https://raw.githubusercontent.com/Konijima/cc-music-player/master/music.lua
```---
## Run
```bash
music
```---
## Run without installing
```bash
wget run https://raw.githubusercontent.com/Konijima/cc-music-player/master/music.lua
```---
## Startup
To auto-run on startup, add this line to your `startup.lua` file:
```lua
-- run installed
shell.run('music')-- OR
-- run without installing
shell.run('wget', 'run', 'https://raw.githubusercontent.com/Konijima/cc-music-player/master/music.lua')
```