Fish: New Android sdk/home and mic listener func

This commit is contained in:
Phantop 2019-01-20 17:57:50 -05:00
parent e1acbc8ef3
commit 91fd8e8d19
2 changed files with 10 additions and 1 deletions

View File

@ -1,6 +1,7 @@
# PATHS #
set -gx D /mnt/LocalDiskD
set -gx fish_user_paths ~/.local/bin /usr/bin /usr/local/bin /bin /usr/sbin /usr/local/sbin /sbin $PLAN9/bin
set -gx ANDROID_HOME $D/Installs/Android/sdk
set -gx fish_user_paths ~/.local/bin /usr/bin /usr/local/bin /bin /usr/sbin /usr/local/sbin /sbin $PLAN9/bin $ANDROID_HOME/platform-tools
set -gx ENV .profile
set -gx FFF_CD_FILE ~/.fff_d

View File

@ -0,0 +1,8 @@
# Defined in /tmp/fish.cmP40P/listen.fish @ line 2
function listen
if pactl list short modules | grep loopback
pactl unload-module module-loopback
else
pactl load-module module-loopback
end
end