# Charger bashrc pour garder ton environnement habituel
if [[ -f ~/.bashrc ]]; then
  . ~/.bashrc
fi

# Autostart Hyprland sur tty1 uniquement
if [[ -z "$DISPLAY" && "$(tty)" == "/dev/tty1" ]]; then
  exec startplasma-wayland
fi
