dotfiles/home/zprofile
2024-05-25 15:07:19 +02:00

18 lines
281 B
Bash

# Fastfetch
fastfetch
# 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
# Start Hyprland if the tty is 1
if [ "$(tty)" = /dev/tty1 ]; then
exec Hyprland
fi