nvm nad androidhome
This commit is contained in:
parent
e0a43bd236
commit
196a3c0f00
5 changed files with 19 additions and 1 deletions
1
.gitignore
vendored
1
.gitignore
vendored
|
@ -263,3 +263,4 @@ pdfarranger/
|
|||
abiword/
|
||||
kalk/
|
||||
netsurf/
|
||||
nvm/
|
||||
|
|
|
@ -56,3 +56,7 @@ fi
|
|||
if [ -f ~/.config/shell/gui.sh ] ; then
|
||||
. ~/.config/shell/gui.sh
|
||||
fi
|
||||
|
||||
if [ -s "$NVM_DIR/bash_completion" ] ; then
|
||||
. "$NVM_DIR/bash_completion"
|
||||
fi
|
||||
|
|
8
shell/profile.d/android.sh
Normal file
8
shell/profile.d/android.sh
Normal file
|
@ -0,0 +1,8 @@
|
|||
if [ -f "$XDG_DATA_HOME" ] ; then
|
||||
export ANDROID_HOME=$XDG_DATA_HOME/Android/Sdk
|
||||
else
|
||||
export ANDROID_HOME=$HOME/Android/Sdk
|
||||
fi
|
||||
|
||||
export PATH=$PATH:$ANDROID_HOME/emulator
|
||||
export PATH=$PATH:$ANDROID_HOME/platform-tools
|
5
shell/profile.d/nvm.sh
Normal file
5
shell/profile.d/nvm.sh
Normal file
|
@ -0,0 +1,5 @@
|
|||
export NVM_DIR="$HOME/.config/nvm"
|
||||
|
||||
if [ -s "$NVM_DIR/nvm.sh" ] ; then
|
||||
. "$NVM_DIR/nvm.sh"
|
||||
fi
|
|
@ -102,7 +102,7 @@ bindsym $mod+Shift+5 move container to workspace " 5 "
|
|||
bindsym $mod+comma workspace next_on_output
|
||||
bindsym $mod+period workspace prev_on_output
|
||||
# -
|
||||
bindsym $mod+Shift+t layout tabbed
|
||||
bindsym $mod+Shift+t layout toggle tabbed split
|
||||
bindsym $mod+f fullscreen
|
||||
bindsym $mod+Shift+f floating toggle
|
||||
# -
|
||||
|
|
Loading…
Reference in a new issue