mirror of
https://github.com/The-Repo-Club/DotFiles.git
synced 2024-11-24 16:28:41 -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]
|
[Desktop Entry]
|
||||||
Icon=/home/repo/.local/share/JetBrains/Toolbox/toolbox.svg
|
Icon=/home/wayne/.local/share/JetBrains/Toolbox/toolbox.svg
|
||||||
Exec=/home/repo/.local/share/JetBrains/Toolbox/bin/jetbrains-toolbox --minimize
|
Exec=/home/wayne/.local/share/JetBrains/Toolbox/bin/jetbrains-toolbox --minimize
|
||||||
Version=1.0
|
Version=1.0
|
||||||
Type=Application
|
Type=Application
|
||||||
Categories=Development
|
Categories=Development
|
||||||
@ -12,4 +12,4 @@ X-GNOME-Autostart-enabled=true
|
|||||||
StartupNotify=false
|
StartupNotify=false
|
||||||
X-GNOME-Autostart-Delay=10
|
X-GNOME-Autostart-Delay=10
|
||||||
X-MATE-Autostart-Delay=10
|
X-MATE-Autostart-Delay=10
|
||||||
X-KDE-autostart-after=panel
|
X-KDE-autostart-after=panel
|
||||||
|
@ -6,7 +6,7 @@ if [ "$XDG_SESSION_TYPE" = x11 ]
|
|||||||
end
|
end
|
||||||
|
|
||||||
set -gx LC_ALL "en_GB.UTF-8"
|
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 PAGER more
|
||||||
set -gx AUR_PAGER more
|
set -gx AUR_PAGER more
|
||||||
set -gx EDITOR vim
|
set -gx EDITOR vim
|
||||||
|
@ -1,5 +1,30 @@
|
|||||||
set PATH "$HOME/.local/bin:$PATH"
|
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
|
# Adds `~/.config/composer/vendor/bin` to $PATH
|
||||||
# set PATH so it includes user's private bin if it exists
|
# set PATH so it includes user's private bin if it exists
|
||||||
if test -d "$HOME/.config/composer/vendor/bin"
|
if test -d "$HOME/.config/composer/vendor/bin"
|
||||||
|
Loading…
Reference in New Issue
Block a user