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.
Hence, if you are interested in existing applications to "just work" without the need for adjustments, then you may be better off avoiding Wayland.
Wayland solves no issues I have but breaks almost everything I need. Even the most basic, most simple things (like xkill
) - in this case with no obvious replacement. And usually it stays broken, because the Wayland folks mostly seem to care about Automotive, Gnome, maybe KDE - and alienating everyone else (e.g., people using just an X11 window manager or something like GNUstep) in the process.
As 2024 is winding down:
-
FAR (Fix (NieR) Automata Resolution) -- Required by HD Texture Pack.
-- LICENSE GPL V 2.1 | |
-- Free for use and modification | |
-- Keep the credits | |
-- DEPENDENCIES | |
-- Package conky-all >= 1.10 (apt install conky-all) | |
-- Package lm-sensors (apt install lm-sensors) | |
-- All needed fonts in the .font file | |
-- CPU usage in percents. For SMP machines, the CPU number can be provided as an argument. ${cpu cpu0} is/ the total usage, and ${cpu cpuX} (X >= 1) are individual CPUs. |
http://www.oreilly.com/programming/free/files/microservices-for-java-developers.pdf
http://www.oreilly.com/programming/free/files/microservices-for-java-developers.epub
http://www.oreilly.com/programming/free/files/microservices-for-java-developers.mobi
http://www.oreilly.com/programming/free/files/modern-java-ee-design-patterns.pdf
http://www.oreilly.com/programming/free/files/modern-java-ee-design-patterns.epub
http://www.oreilly.com/programming/free/files/modern-java-ee-design-patterns.mobi
Windows Registry Editor Version 5.00 | |
' 文字コードをUTF-16リトルエンディアン、改行をCR+LFで保存してください | |
[HKEY_CURRENT_USER\Software\Wine\Fonts\Replacements] | |
"Meiryo UI"="Noto Sans CJK JP" | |
"Meiryo"="Noto Sans CJK JP" | |
"MS Gothic"="Ume Gothic" | |
"MS Mincho"="Ume Mincho" | |
"MS PGothic"="Ume P Gothic" |
As root: | |
fstrim --all | |
systemctl enable fstrim.timer | |
Firefox about:config: | |
browser.sessionstore.interval -> 1800000 | |
browser.cache.disk.enable -> false | |
browser.cache.memory.capacity -> -1 | |
browser.cache.memory.enable -> true |
#!/bin/bash | |
WIDTH=1280 | |
HEIGHT=800 | |
x11_cmd=x11vnc | |
if [[ ! -z $(pgrep ${x11_cmd}) ]]; then | |
pkill ${x11_cmd} | |
fi |
# Thanks to @danger89 and @Ilothar for updating the gist. | |
# Set the name and the supported language of the project | |
project(hello-world C CXX) | |
# Set the minimum version of cmake required to build this project | |
cmake_minimum_required(VERSION 3.10) | |
# Use the package PkgConfig to detect GTK+ headers/library files | |
find_package(PkgConfig REQUIRED) | |
pkg_check_modules(GTK REQUIRED gtkmm-3.0) |