Update dotfiles (2026-01-19 19:48:47)

This commit is contained in:
2026-01-19 19:48:47 +01:00
parent bad27e9514
commit 017852a873
71 changed files with 4488 additions and 0 deletions
+26
View File
@@ -0,0 +1,26 @@
# -----------------------------------------------------
# AUTOSTART
# -----------------------------------------------------
# Fastfetch
if [[ $(tty) == *"pts"* ]]; then
fastfetch --config ~/.config/fastfetch/Gif.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)"
}