fallbackwidth
and fallbackheight
are empty when you run the config in the browser
Note
The current version is messy.
import React from "react"; | |
import { Page, Toolbar, BottomToolbar, Ansi } from "@mmrl/ui"; | |
import { ConfigProvider } from "@mmrl/providers"; | |
import { | |
useConfig, | |
useActivity, | |
useNativeStorage, | |
useTheme | |
} from "@mmrl/hooks"; | |
import { Add, Remove, Save } from "@mui/icons-material"; |
var useExt = false | |
const [line, addLine] | |
const processCommand = (rawCommand) => { | |
var arg; | |
var command; | |
const i = rawCommand.indexOf(' '); | |
if (i != -1 && rawCommand.length() != i + 1) { | |
arg = rawCommand.substring(i + 1).trim(); |
import React from "react"; | |
import { Page, Toolbar } from "@mmrl/ui"; | |
import { useActivity } from "@mmrl/hooks"; | |
import { BugReport } from "@mui/icons-material"; | |
import { ListItem, ListItemIcon } from "@mui/material"; | |
const y = YAML.parse(`bind-addr: 127.0.0.1:8080 | |
auth: password | |
password: SuperStrongPassword | |
cert: false`) |
An cli to install module directly from the Magisk-Modules-Alt-Repo
Usage: getisk install mkshrc:master
install the module to be installed
help prints this help message
import Mustache from "mustache"; | |
namespace TSON { | |
export type Vars<T> = { | |
vars: T; | |
}; | |
export type Data<T = any, V = any> = Vars<V> & { | |
[o: string | number | symbol]: T; | |
}; | |
export type OmitterKeys<T> = keyof T | (keyof T)[]; |
################################ | |
# 2022 (c) Der_Googler # | |
# Fake Shell Android Charger # | |
################################ | |
i=1 | |
while [ $i -le 100 ] | |
do | |
# Change the battery steps every by one | |
cmd battery set level $i |
// <dg-lang de="" en=""></dg-lang> | |
class TTSLANG extends HTMLElement { | |
connectedCallback() { | |
if (getUrlParam("lang") == "en") { | |
this.innerHTML = this.getAttribute('en'); | |
} else if (getUrlParam("lang") == "de") { | |
this.innerHTML = this.getAttribute('de'); | |
} | |
} | |
} |