dotfiles/.bash_profile
2025-05-17 08:18:36 +02:00

14 lines
261 B
Bash

#
# ~/.bash_profile
#
# Launch Hyprland and Hyprlock on launch
[[ -z $DISPLAY && $(tty) = /dev/tty1 ]] && exec Hyprland
[[ -f ~/.bashrc ]] && . ~/.bashrc
# Start uwsm, which starts hyprland
if uwsm check may-start; then
exec uwsm start hyprland.desktop
fi