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
    
  
  
    
  | #!/bin/bash | |
| ################################################################################### | |
| # Jellyfin FLAC Favorites and Play Count Bidirectional Sync Script | |
| ################################################################################### | |
| # | |
| # DESCRIPTION: | |
| # This script provides bidirectional synchronization between FLAC files and | |
| # Jellyfin favorites/play counts based on Vorbis comment tags. | |
| # | 
  
    
      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
    
  
  
    
  | .nameContainer { | |
| flex-direction: row; | |
| align-items: baseline; | |
| padding-bottom: 0.25em; | |
| overflow: auto; | |
| justify-content: center !important; | |
| } | |
| .detailImageContainer:has(.backdropCard,.squareCard)~.nameContainer h1:has(+ h3).parentName.focuscontainer-x { | |
| display: none !important; | 
  
    
      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
    
  
  
    
  | #!/bin/bash | |
| mkdir -p output | |
| for FILE in videos/* | |
| do | |
| video=$(ls -1 videos | sort | sed -n "${n}p") | |
| font_folder=$(ls -1 -d fonts/*/ | sort | sed -n "${n}p" | sed 's:/$::') | |
| if [[ -z "$video" || -z "$font_folder" ]]; then | 
  
    
      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
    
  
  
    
  | import qbittorrentapi | |
| # API Configuration | |
| qb = qbittorrentapi.Client(host='http://0.0.0.0:8080', username='username', password='password') | |
| # New tracker URL to replace existing trackers | |
| new_tracker_url = "new Tracker URL" | |
| # Attempt to log in to qBittorrent | |
| try: | 
  
    
      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
    
  
  
    
  | #!/bin/bash | |
| #requires edge-tts | |
| #run in the same directory as the text file | |
| read -p 'Enter the filename: ' TEXTFILE | |
| read -p 'Enter voicetype (m/f) (default f): ' VOICE | |
| # turn aozora formatted text into simple text file | |
| perl -pe 's/[#.*?]//g' $TEXTFILE > TMP.txt | 
  
    
      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
    
  
  
    
  | #Requires AutoHotkey v2.0 | |
| #f::Run "C:\Program Files\Everything\Everything.exe" | |
| #b::Run "C:\Program Files\BraveSoftware\Brave-Browser\Application\brave.exe" | |
| #PgUp::Send "{Volume_Up 1}" | |
| #PgDn::Send "{Volume_Down 1}" | |
| #h:: { | 
  
    
      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
    
  
  
    
  | // elasticsearch version 7 | |
| wget https://artifacts.elastic.co/downloads/elasticsearch/elasticsearch-oss-7.5.2-linux-x86_64.tar.gz | |
| wget https://artifacts.elastic.co/downloads/elasticsearch/elasticsearch-oss-7.5.2-linux-x86_64.tar.gz.sha512 | |
| shasum -a 512 -c elasticsearch-oss-7.5.2-linux-x86_64.tar.gz.sha512 | |
| tar -xzf elasticsearch-oss-7.5.2-linux-x86_64.tar.gz | |
| cd elasticsearch-oss-7.5.2/ | |
| echo 'export ES_HOME="$HOME/elasticsearch-7.5.2/"' >> ~/.bashrc | |
| echo 'export PATH="$ES_HOME/bin:$PATH"' >> ~/.bashrc | |
| exec $SHELL | 
  
    
      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
    
  
  
    
  | ls *.epub | % {7za e -y $_ cov*.jp*; mv cover*.j* ($_.name -replace "epub","jpg")} ; | 
  
    
      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
    
  
  
    
  | from bokeh.plotting import figure, output_file, save | |
| from bokeh.models import BasicTickFormatter | |
| from datetime import datetime | |
| import json | |
| import requests | |
| import time | |
| import os | |
| from bokeh.models.tools import HoverTool | |
| def parse_json(response): | 
NewerOlder