Read only mirror: A plugin manager for fakemurk

rainestorme ccd88b8cbb Fix variable name in installer 2 years ago
plugins 101fdc77a4 Change PLUGIN_FUNCTION 2 years ago
LICENSE 6a505a8b31 Initial commit 2 years ago
README.md 9a88cba965 Update README.md 2 years ago
chromeos_startup.sh 93b7af6d25 Add more autoupdate files 2 years ago
fakemurk-daemon.sh 4f0b949084 Add emergency fix-mush listener to daemon 2 years ago
murkmod.sh 3e30c3e6d8 Fix logo 2 years ago
mush.sh ccd88b8cbb Fix variable name in installer 2 years ago
pre-startup.conf 566ee7aa27 Add pre-startup.conf for better autoupdate compatibility 2 years ago

README.md

murkmod

murkmod is a utility script that patches fakemurk and mush to include additional useful utilities, with the most prominent being a plugin manager. This tool enables you to easily install and manage various packages and plugins for mush, and, eventually, fakemurk itself. murkmod also includes additional useful tools and features that can aid you in your various Chromebook hacking tasks.

Installation

To install murkmod, simply spawn a root shell (option 1) from mush, and paste in the following command:

bash <(curl -SLk https://raw.githubusercontent.com/rainestorme/murkmod/main/murkmod.sh)

This command will download and install murkmod and its (almost minimal) dependencies. Once the installation is complete, you can start using murkmod by running mush as usual.

Plugin Management

Once murkmod is installed, refresh your mush tab or open a new one with Ctrl+Alt+T. You'll see a few new options, such as the ability to run neofetch, but the important ones here are Install plugins, Uninstall plugins and Plugins.

To install a plugin, head over to this link. Find the plugin you want and remember its filename. You'll need it in a bit. Select Install plugins and enter the filename. The file should be installed, then you can enter q to quit.

You can go to Plugins to use your installed plugins. Once you select an option, it should execute the plugin's contents.

Plugin Development

It's pretty straightforward to create a pluign. Just create a .sh file with the following content:

#!/bin/bash
PLUGIN_NAME="Hello World Plugin"
PLUGIN_FUNCTION="Print a hello world message"
PLUGIN_DESCRIPTION="The friendliest murkmod plugin you'll ever see."
PLUGIN_AUTHOR="rainestorme"
PLUGIN_VERSION=1
echo "Hello, World!"

Of course, you should change this to match your plugin. Every time you update your plugin, you should increment PLUGIN_VERSION. Everything below the initial variables, though, is what is executed when you run the plugin from the mush menu.

To add a plugin to this repository (for easy download from mush), just fork the repo, add the file in /plugins/ and make a PR. I'll review it and merge it if it doesn't do anything malicious.