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.
- How to install and print on a Thermal Printer USB 58mm / 80mm. https://twitter.com/juancarlospaco/status/1128781387782344710/photo/1 https://twitter.com/juancarlospaco/status/1128732835131678720/photo/1
- This kind of printer is cheap as hell compared to all other kind of printers, including ink-tank and dot-matrix.
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
from __future__ import print_function | |
import sys | |
import io | |
import pip | |
import httplib2 | |
import os | |
from mimetypes import MimeTypes | |
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
--- compton.c 2012-04-23 20:49:21.000000000 +0300 | |
+++ compnew.c 2012-04-23 20:49:09.000000000 +0300 | |
@@ -1005,6 +1005,11 @@ | |
continue; | |
} | |
+ /* patch for error 9 caused by java AWT tray icons */ | |
+ if (w->a.width < 2 && w->a.height < 2) { | |
+ continue; |