All packages, except for Tini have been added to termux-root. To install them, simply pkg install root-repo && pkg install docker
. This will install the whole docker suite, left only Tini to be compiled manually.
This file contains hidden or 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
# AutoKey script that clicks on the current cursor location until invoked for a second time. | |
# https://github.com/autokey-py3/autokey | |
# Create the value on the first run of the script | |
if not store.has_key("run"): | |
store.set_value("run", 0) | |
# Flip run flag | |
store.set_value("run", int(not store.get_value("run"))) |
This file contains hidden or 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
tools | options |c/c++ |code assistance | macro definitions | |
add '__GXX_EXPERIMENTAL_CXX0X__=1' | |
credit: ctapmex from http://forums.netbeans.org |