]> localhost Git - dotfiles.git/commitdiff
Slight changes to bashrc,asvarsall.sh
authorMisomosi <[email protected]>
Wed, 24 Sep 2025 21:47:36 +0000 (17:47 -0400)
committerMisomosi <[email protected]>
Wed, 24 Sep 2025 21:47:36 +0000 (17:47 -0400)
.bashrc
.local/bin/asvarsall.sh
README.md

diff --git a/.bashrc b/.bashrc
index b4f9ec11435f8708eb60daec686238be27dbb5ba..3df64f16edb1a510b4245b9eecd275c9f2a6aee3 100644 (file)
--- a/.bashrc
+++ b/.bashrc
@@ -10,3 +10,6 @@ alias gdb="gdb-posix"
 # If you use X, then xclip is what you're looking for
 alias tmux-copy="tmux show-buffer | wl-copy"
 alias tmux-paste="wl-paste"
+
+# Android Studio SDK, NDK, CLI tools variables (similar to vcvarsall)
+source asvarsall.sh
index a271aa123175b1012be78314c2493660596a2adc..f36043bc60178b662ae4e198dc70b33d55345bd0 100644 (file)
@@ -11,4 +11,3 @@ PLATFORM_BIN="$ANDROID_SDK_HOME/platform-tools"
 CMDLINE_BIN="$ANDROID_SDK_HOME/cmdline-tools/latest/bin"
 LLVM_BIN="$(echo "$ANDROID_NDK_HOME"/toolchains/llvm/prebuilt/linux-*/bin)"
 export PATH="$LLVM_BIN:$CMDLINE_BIN:$PLATFORM_BIN:$PATH"
-"$SHELL"
index 0ba49accd5cf58054bf1554d97f307f2de42c0e1..899823e571777fed480a88ed1a7707b273ef61d1 100644 (file)
--- a/README.md
+++ b/README.md
@@ -77,6 +77,9 @@ alias gdb="gdb-posix -ex 'source .breakpoints'"
 # If you use X, then xclip is what you're looking for
 alias tmux-copy="tmux show-buffer | wl-copy"
 alias tmux-paste="wl-paste"
+
+# Android Studio SDK, NDK, CLI tools variables (similar to vcvarsall)
+source asvarsall.sh
 ```
 
 ## gdb-posix
@@ -202,5 +205,4 @@ PLATFORM_BIN="$ANDROID_SDK_HOME/platform-tools"
 CMDLINE_BIN="$ANDROID_SDK_HOME/cmdline-tools/latest/bin"
 LLVM_BIN="$(echo "$ANDROID_NDK_HOME"/toolchains/llvm/prebuilt/linux-*/bin)"
 export PATH="$LLVM_BIN:$CMDLINE_BIN:$PLATFORM_BIN:$PATH"
-"$SHELL"
 ```