Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/konijima/cc-music-player
Simple music player for ComputerCraft
https://github.com/konijima/cc-music-player
computercraft minecraft
Last synced: 16 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 (over 2 years ago)
- Default Branch: master
- Last Pushed: 2022-05-16T04:20:10.000Z (over 2 years ago)
- Last Synced: 2024-11-05T18:55:09.596Z (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.![](https://github.com/Konijima/cc-music-player/blob/master/Screenshot_1.png?raw=true)
## 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')
```