This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
let lev = Device.batteryLevel().toFixed(2); | |
let out = String(lev + " %"); | |
Script.setShortcutOutput(out); | |
Script.complete(); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# /etc/config/network | |
# OpenWRT router (physical or virtual) is behind a Telekom Glasfaser Modem 2 | |
config interface 'WAN' | |
option proto 'pppoe' | |
option ipv6 'auto' | |
option device 'eth1.7' | |
option username '1und1/[email protected]' | |
option password 'xxxxxxxx' | |
option metric '1' |