8 lines
147 B
Bash
8 lines
147 B
Bash
export PATH="$HOME/.local/bin:$PATH"
|
|
|
|
# Start DE if on tty1
|
|
if [ "$(tty)" = /dev/tty1 ]; then
|
|
exec Hyprland
|
|
fi
|
|
|
|
[[ -f ~/.bashrc ]] && . ~/.bashrc
|