11 lines
132 B
Bash
11 lines
132 B
Bash
|
#
|
||
|
# ~/.bash_profile
|
||
|
#
|
||
|
|
||
|
[[ -f ~/.bashrc ]] && . ~/.bashrc
|
||
|
|
||
|
# Start DE if on tty1
|
||
|
if [ "$(tty)" = /dev/tty1 ]; then
|
||
|
exec Hyprland
|
||
|
fi
|