shell -> bash: Reorder executions and imports to fix execution orders

This commit is contained in:
GaspardCulis 2024-06-01 03:35:15 +02:00
parent f366c9b3ad
commit 892eee106f
No known key found for this signature in database
GPG key ID: BC18146756955609
3 changed files with 14 additions and 14 deletions

View file

@ -1,5 +1,10 @@
#!/usr/bin/bash
# Start DE if on tty1
if [ "$(tty)" = /dev/tty1 ]; then
exec Hyprland
fi
# Start in tmux by default
[[ $TERM != "screen" ]] && [ -z "$TMUX" ] && exec tmux

View file

@ -3,8 +3,3 @@
#
[[ -f ~/.bashrc ]] && . ~/.bashrc
# Start DE if on tty1
if [ "$(tty)" = /dev/tty1 ]; then
exec Hyprland
fi

View file

@ -40,6 +40,15 @@ if [ -f "$CARGO_ENV_PATH" ]; then
. "$CARGO_ENV_PATH"
fi
FLUTTER_PATH="/opt/flutter/bin"
if test -d "$FLUTTER_PATH"; then
export PATH="$FLUTTER_PATH:$PATH"
fi
if [ -f ~/.bash_exec ]; then
source ~/.bash_exec
fi
if command -v starship > /dev/null; then
eval "$(starship init bash)"
fi
@ -47,12 +56,3 @@ fi
if command -v zoxide > /dev/null; then
eval "$(zoxide init --cmd cd bash)"
fi
if [ -f ~/.bash_exec ]; then
source ~/.bash_exec
fi
FLUTTER_PATH="/opt/flutter/bin"
if test -d "$FLUTTER_PATH"; then
export PATH="$FLUTTER_PATH:$PATH"
fi