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
<?xml version="1.0" encoding="utf-8"?> | |
<manifest xmlns:android="http://schemas.android.com/apk/res/android" | |
package="{{YOUR_APP_NAME}}"> | |
<uses-sdk android:targetSdkVersion="17" android:minSdkVersion="17" /> | |
<application> | |
<service | |
android:name=".{{YOUR_DAYDREAM_CLASS}}" |
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
https://wiki.termux.com/wiki/Getting_started |
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
Dummy files see next file |
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
Konfigurasi sederhana untuk termux. | |
Rekomendasi dari saya |
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
# Update 28, Mei 2024 by @luisadha | |
# Enable the subsequent settings only in interactive sessions | |
case $- in | |
*i*) ;; | |
*) return;; | |
esac | |
: "My Custom Path" | |
export PATH="$PATH:~/.local/bin:/system/bin:$HOME/.cargo/bin" | |
: "My Habbit Aliases" |
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
# .bashrc -*- mode: sh -*- | |
pthon3 - <<EOF | |
# Kode Python di sini | |
print("Halo dari Python!") | |
EOF | |
expect - <<EOF | |
spawn brandomusic | |
expect { |
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
#!/data/data/com.termux/files/usr/bin/bash | |
# Created @luisadha | |
set +o noclobber; | |
format='audio/mp3'; | |
format2='audio'; | |
file="${1:+"${1}/*.mp3"}"; | |
file2="${1:-"${HOME}/downloads/*.mp3"}"; | |
files=$(busybox ls ${file:-${file2}}); |
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
{ config, lib, pkgs, ... }: | |
{ | |
# termux integration | |
android-integration = { | |
am.enable = true; # termux-am | |
termux-open.enable = true; | |
termux-open-url.enable = true; | |
termux-reload-settings.enable = true; | |
termux-setup-storage.enable = true; |
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
{ pkgs, lib, ... }: | |
{ | |
imports = [ | |
./fish.nix | |
# ./starship.nix | |
./git.nix | |
./lazygit.nix | |
./fzf.nix | |
./vim.nix | |
./tmux ]; # Import any config |
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
home-manager https://github.com/rycee/home-manager/archive/release-22.05.tar.gz | |
nix-on-droid https://github.com/t184256/nix-on-droid/archive/testing.tar.gz | |
nixpkgs https://nixos.org/channels/nixos-22.05 |