From edcce5dc5af2459ea0fa0865c0207a67da26c4a5 Mon Sep 17 00:00:00 2001 From: kepler155c Date: Sat, 29 Dec 2018 23:50:10 -0500 Subject: [PATCH] Updated Home (markdown) --- Home.md | 22 +++++++++++++++++++++- 1 file changed, 21 insertions(+), 1 deletion(-) diff --git a/Home.md b/Home.md index add88a0..7d6e72f 100644 --- a/Home.md +++ b/Home.md @@ -1 +1,21 @@ -Welcome to the opus wiki! +Running Custom Programs +======================= +To create a program that runs at startup, create a file in /usr/autorun to start the program. Example: + +/usr/autorun/startup.lua +``` +shell.openForegroundTab('myprogram') +``` + +There are 3 different ways to open tabs: +* shell.openTab : background tab +* shell.openForegroundTab : focused tab +* shell.openHiddenTab : appears only in the Tasks application + +Copy / Paste +============ +Opus can paste from both the system clipboard and the internal clipboard. +control-v: for normal clipboard +control-shift-v: for internal clipboard + +