mirror of
https://github.com/The-Repo-Club/DotFiles.git
synced 2024-11-25 00:38:20 -05:00
Update
Signed-off-by: HeCodes2Much <wayne6324@gmail.com>
This commit is contained in:
parent
f6233343ea
commit
22e9dee680
@ -1,6 +1,6 @@
|
||||
[Desktop Entry]
|
||||
Icon=/home/repo/.local/share/JetBrains/Toolbox/toolbox.svg
|
||||
Exec=/home/repo/.local/share/JetBrains/Toolbox/bin/jetbrains-toolbox --minimize
|
||||
Icon=/home/wayne/.local/share/JetBrains/Toolbox/toolbox.svg
|
||||
Exec=/home/wayne/.local/share/JetBrains/Toolbox/bin/jetbrains-toolbox --minimize
|
||||
Version=1.0
|
||||
Type=Application
|
||||
Categories=Development
|
||||
|
@ -6,7 +6,7 @@ if [ "$XDG_SESSION_TYPE" = x11 ]
|
||||
end
|
||||
|
||||
set -gx LC_ALL "en_GB.UTF-8"
|
||||
set -gx ANDROID_HOME /home/repo/Android/Sdk
|
||||
set -gx ANDROID_HOME /home/wayne/Android/Sdk
|
||||
set -gx PAGER more
|
||||
set -gx AUR_PAGER more
|
||||
set -gx EDITOR vim
|
||||
|
@ -1,5 +1,30 @@
|
||||
set PATH "$HOME/.local/bin:$PATH"
|
||||
|
||||
|
||||
# Adds `/opt/flutter/bin` to $PATH
|
||||
# set PATH so it includes user's private bin if it exists
|
||||
if test -d "/opt/flutter/bin"
|
||||
set PATH "/opt/flutter/bin:$PATH"
|
||||
end
|
||||
|
||||
# Adds `ANDROID_HOME/tools` to $PATH
|
||||
# set PATH so it includes user's private bin if it exists
|
||||
if test -d "$ANDROID_HOME/tools"
|
||||
set PATH "$ANDROID_HOME/tools:$PATH"
|
||||
end
|
||||
|
||||
# Adds `ANDROID_HOME/tools/bin` to $PATH
|
||||
# set PATH so it includes user's private bin if it exists
|
||||
if test -d "$ANDROID_HOME/tools/bin"
|
||||
set PATH "$ANDROID_HOME/tools/bin:$PATH"
|
||||
end
|
||||
|
||||
# Adds `ANDROID_HOME/platform-tools` to $PATH
|
||||
# set PATH so it includes user's private bin if it exists
|
||||
if test -d "$ANDROID_HOME/platform-tools"
|
||||
set PATH "$ANDROID_HOME/platform-tools:$PATH"
|
||||
end
|
||||
|
||||
# Adds `~/.config/composer/vendor/bin` to $PATH
|
||||
# set PATH so it includes user's private bin if it exists
|
||||
if test -d "$HOME/.config/composer/vendor/bin"
|
||||
|
Loading…
Reference in New Issue
Block a user