27 lines
694 B
Plaintext
27 lines
694 B
Plaintext
# -----------------------------------------------------
|
|
# AUTOSTART
|
|
# -----------------------------------------------------
|
|
|
|
# Fastfetch
|
|
if [[ $(tty) == *"pts"* ]]; then
|
|
fastfetch --config ~/.config/fastfetch/Base.jsonc
|
|
else
|
|
echo
|
|
if [ -f /bin/qtile ]; then
|
|
echo "Start Qtile X11 with command Qtile"
|
|
fi
|
|
if [ -f /bin/hyprctl ]; then
|
|
echo "Start Hyprland with command Hyprland"
|
|
fi
|
|
fi
|
|
|
|
# Tmux
|
|
# if command -v tmux &> /dev/null && [ -z "$TMUX" ]; then
|
|
# tmux attach-session -t default || tmux new-session -s default
|
|
# fi
|
|
#
|
|
# Vencord alias
|
|
vencord() {
|
|
zsh -c "$(curl -sS https://raw.githubusercontent.com/Vendicated/VencordInstaller/main/install.sh)"
|
|
}
|