Repo created

This commit is contained in:
Fr4nz D13trich 2025-11-22 16:41:32 +01:00
parent d22b8dc57b
commit 24b567c524
271 changed files with 39630 additions and 2 deletions

13
art/copy-to-other-apps.sh Executable file
View file

@ -0,0 +1,13 @@
#!/bin/sh
set -e -u
for APP in api boot styling tasker widget; do
APPDIR=../../termux-$APP
for file in ic_foreground ic_launcher; do
cp ../app/src/main/res/drawable/$file.xml \
$APPDIR/app/src/main/res/drawable/$file.xml
done
cp ../app/src/main/res/drawable-anydpi-v26/ic_launcher.xml \
$APPDIR/app/src/main/res/drawable-anydpi-v26/$file.xml
done