-
Notifications
You must be signed in to change notification settings - Fork 1
Planned
Planned Features
This page outlines planned commands and functionality for our file and script management system.
OS Detection Ideas:
DETECT_OS putted in variables to use later. Or in if statements (IF DETECT_OS == ANDROID , ELSE: ) etc
File Selection Commands
USE_FILE /path/to/file
Selects a single file and makes it "ready to use".
Current Example:
USE_FILE /scripts/script.txt
Selects script.txt in the scripts folder. Currently, this does not perform any action but prepares the file for later operations.
USE_FILES /path/to/files
Select multiple files at once. Can be used with files from the SD Card or internal storage.
Example:
USE_FILES /scripts/script1.txt /scripts/script2.txt
Selects multiple files to be used later.
File Operations
COPY_FILE [path] Copies a file.
Without a path: copies the currently selected file.
With a path: copies a specific file.
Example:
COPY_FILE
COPY_FILE /scripts/script.txt
CUT_FILE [path]
Cuts a file (prepares it to be moved).
Without a path: cuts the currently selected file.
With a path: cuts a specific file.
Example:
CUT_FILE
CUT_FILE /scripts/script.txt
PASTE_FILE
Pastes a previously copied or cut file to the current directory.
Example:
PASTE_FILE
Internet Commands
JOIN_INTERNET SSID="" PASSWORD=""
Connects to a Wi-Fi network.
Example:
JOIN_INTERNET SSID="MyWiFi" PASSWORD="securepassword"
LEAVE_INTERNET
Disconnects from the current Wi-Fi network.
Example:
LEAVE_INTERNET
Scripts can be executed from the Scripts tab.
New Planned Feature: Add a “run script” button represented by a running bunny emoji 🐇.
The bunny emoji should indicate that the script is currently running.
Example (UI idea):
🐇 Run Script
An ETHERNET / LAN Support for modules
Maybe Screen sharing
keylogging?
Connect to wifi if possible
run when connected to wifi
Notes
All file commands should support both SD Card and internal storage paths.
Selected files should persist for operations like copy, cut, and paste.
Future UI enhancements will include visual indicators for selected files and running scripts.