14 lines
262 B
Bash
14 lines
262 B
Bash
#!/usr/bin/bash
|
|
|
|
# Start DE if on tty1
|
|
if [ "$(tty)" = /dev/tty1 ]; then
|
|
exec Hyprland
|
|
fi
|
|
|
|
# Start in tmux by default
|
|
# [[ $TERM != "screen" ]] && [ -z "$TMUX" ] && exec tmux
|
|
|
|
if command -v jaaj &> /dev/null && command -v dotacat &> /dev/null; then
|
|
jaaj
|
|
fi
|
|
|