forked from ahurac/dotfiles
25 lines
366 B
Text
25 lines
366 B
Text
|
# Lines added by ahurac
|
||
|
|
||
|
# Prepenth the local bin directory to the path array
|
||
|
typeset -U path PATH
|
||
|
|
||
|
addpath() {
|
||
|
if [ -d "$1" ]; then
|
||
|
path=("$1" $path)
|
||
|
fi
|
||
|
}
|
||
|
|
||
|
addpath ~/.local/bin
|
||
|
addpath ~/.local/share/minecraft/servers/bin
|
||
|
|
||
|
# Fastfetch
|
||
|
fastfetch
|
||
|
|
||
|
# Start Hyprland if the tty is 1
|
||
|
if [ "$(tty)" = /dev/tty1 ]; then
|
||
|
exec Hyprland
|
||
|
else
|
||
|
true
|
||
|
fi
|
||
|
|