13 lines
189 B
Cheetah
13 lines
189 B
Cheetah
#
|
|
# ~/.bash_profile
|
|
#
|
|
|
|
[[ -f ~/.bashrc ]] && . ~/.bashrc
|
|
|
|
# Start Hyprland on TTY1
|
|
if [ "${XDG_VTNR}" -eq 1 ]; then
|
|
if uwsm check may-start; then
|
|
exec uwsm start hyprland.desktop
|
|
fi
|
|
fi
|